mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fix PHP error "Only variables should be passed by reference"
--HG-- branch : develop
This commit is contained in:
parent
70ace8b7d4
commit
ef2415257b
1 changed files with 3 additions and 2 deletions
|
@ -86,9 +86,10 @@
|
|||
}
|
||||
else
|
||||
{
|
||||
$this->serialUInt32(strlen($val));
|
||||
$valLen = strlen($val);
|
||||
$this->serialUInt32($valLen);
|
||||
$this->Buffer .= $val;
|
||||
$this->Pos += strlen($val);
|
||||
$this->Pos += $valLen;
|
||||
debug(sprintf ("write string '%s' %d<br>\n", $val, $this->Pos));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue