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