PHP Fatal error: Call-time pass-by-reference has been removed in mod/item.php on line 630
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
This commit is contained in:
parent
975781d3e2
commit
0bf9595ab1
1 changed files with 1 additions and 1 deletions
|
@ -627,7 +627,7 @@ function item_post(&$a) {
|
||||||
|
|
||||||
if($preview) {
|
if($preview) {
|
||||||
require_once('include/conversation.php');
|
require_once('include/conversation.php');
|
||||||
$o = conversation(&$a,array(array_merge($contact_record,$datarray)),'search',false,true);
|
$o = conversation($a,array(array_merge($contact_record,$datarray)),'search',false,true);
|
||||||
logger('preview: ' . $o);
|
logger('preview: ' . $o);
|
||||||
echo json_encode(array('preview' => $o));
|
echo json_encode(array('preview' => $o));
|
||||||
killme();
|
killme();
|
||||||
|
|
Loading…
Reference in a new issue