Fix PHP error "Only variables should be passed by reference"

--HG--
branch : develop
hg/feature/light_cycle
kaetemi 10 years ago
parent ef2415257b
commit 2df9cb5f87

@ -91,9 +91,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));
}
}

@ -104,7 +104,8 @@
}
else
{
$this->serialUInt32($val->toInt());
$intValue = $val->toInt();
$this->serialUInt32($intValue);
debug(sprintf ("write enum '%s' %d<br>\n", $val->toString(), $this->Pos));
}
}

Loading…
Cancel
Save