Commit 268055f9 authored by mku's avatar mku

ZP-127 #comment PHP Fatal error: Call-time pass-by-reference has been removed...

ZP-127 #comment PHP Fatal error: Call-time pass-by-reference has been removed with PHP 5.4 #time 15m

git-svn-id: https://z-push.org/svn/z-push/trunk@1335 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent dd922cca
......@@ -397,10 +397,10 @@ class Sync extends RequestProcessor {
default:
// get the importer
if ($this->importer == false)
$status = $this->getImporter($sc, $spa, &$actiondata);
$status = $this->getImporter($sc, $spa, $actiondata);
if ($status == SYNC_STATUS_SUCCESS)
$this->importMessage($spa, &$actiondata, $element[EN_TAG], $message, $clientid, $serverid);
$this->importMessage($spa, $actiondata, $element[EN_TAG], $message, $clientid, $serverid);
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment