aboutsummaryrefslogtreecommitdiffstats
path: root/mod/item.php
diff options
context:
space:
mode:
authorSimon L'nu <simon.lnu@gmail.com>2012-03-14 11:00:20 -0400
committerSimon L'nu <simon.lnu@gmail.com>2012-03-14 11:00:20 -0400
commit0bf9595ab19f3af772d20a88eac86dc8cf962c3e (patch)
treec5f612523a0d60d8c38b0c39e6df5410c0d81bee /mod/item.php
parent975781d3e23e6beb2ac86b191c7c12b7347c1705 (diff)
downloadvolse-hubzilla-0bf9595ab19f3af772d20a88eac86dc8cf962c3e.tar.gz
volse-hubzilla-0bf9595ab19f3af772d20a88eac86dc8cf962c3e.tar.bz2
volse-hubzilla-0bf9595ab19f3af772d20a88eac86dc8cf962c3e.zip
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>
Diffstat (limited to 'mod/item.php')
-rwxr-xr-xmod/item.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php
index 81d7c753b..6f31f917f 100755
--- a/mod/item.php
+++ b/mod/item.php
@@ -627,7 +627,7 @@ function item_post(&$a) {
if($preview) {
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);
echo json_encode(array('preview' => $o));
killme();