Browse Source

filter ireplace values to string

main
ghost 7 months ago
parent
commit
f17dfa38d5
  1. 6
      src/Server/Ratchet.php

6
src/Server/Ratchet.php

@ -202,14 +202,14 @@ class Ratchet implements MessageComponentInterface
{ {
// Return success response // Return success response
$connection->send( $connection->send(
str_replace( str_ireplace(
[ [
'{name}', '{name}',
'{txid}' '{txid}'
], ],
[ [
$this->_config->kevacoin->wallet->namespace, (string) $this->_config->kevacoin->wallet->namespace,
$txid (string) $txid
], ],
implode( implode(
PHP_EOL, PHP_EOL,

Loading…
Cancel
Save