diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-05 07:18:01 +1000 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-05 07:18:01 +1000 |
commit | 350ea2bf28651c6c25c11049bf2bcf3609a7ec29 (patch) | |
tree | ba9b1e7851fe26c0865c91dfb1e15e9955d7eeb3 /include/items.php | |
parent | b1888afa108fb09d0ebe3d50cc70ee9024ea76f1 (diff) | |
parent | fc804751a2967db0d46385bb89248228b2b5d8bf (diff) | |
download | volse-hubzilla-350ea2bf28651c6c25c11049bf2bcf3609a7ec29.tar.gz volse-hubzilla-350ea2bf28651c6c25c11049bf2bcf3609a7ec29.tar.bz2 volse-hubzilla-350ea2bf28651c6c25c11049bf2bcf3609a7ec29.zip |
Merge pull request #35 from redmatrix/jeroenpraat-patch-1
Fix for PHP Fatal error: Function name must be a string in /var/www/…
Diffstat (limited to 'include/items.php')
-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) ); |