Made some changes for 0.12

This commit is contained in:
Shoghi Cervantes
2015-06-26 13:49:38 -07:00
committed by Shoghi Cervantes
parent 0380e9009a
commit 4258e22c02
18 changed files with 227 additions and 108 deletions

View File

@ -1912,9 +1912,9 @@ class Server{
if(!$p->isEncoded){
$p->encode();
}
$str .= $p->buffer;
$str .= Binary::writeInt(strlen($p->buffer)) . $p->buffer;
}else{
$str .= $p;
$str .= Binary::writeInt(strlen($p)) . $p;
}
}