diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2015-09-04 12:39:47 +0200 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2015-09-04 12:39:47 +0200 |
commit | fc804751a2967db0d46385bb89248228b2b5d8bf (patch) | |
tree | ba9b1e7851fe26c0865c91dfb1e15e9955d7eeb3 | |
parent | b1888afa108fb09d0ebe3d50cc70ee9024ea76f1 (diff) | |
download | volse-hubzilla-fc804751a2967db0d46385bb89248228b2b5d8bf.tar.gz volse-hubzilla-fc804751a2967db0d46385bb89248228b2b5d8bf.tar.bz2 volse-hubzilla-fc804751a2967db0d46385bb89248228b2b5d8bf.zip |
Fix for PHP Fatal error: Function name must be a string in /var/www/hubzilla/include/items.php on line 3325
Please review if this is correct?
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 9807831e3..91afad0e6 100755 --- a/include/items.php +++ b/include/items.php @@ -3322,7 +3322,7 @@ function start_delivery_chain($channel, $item, $item_id, $parent) { dbesc($title), dbesc($body), intval($item_wall), - $intval($item_origin), + intval($item_origin), intval($item_id) ); |