diff options
author | friendica <info@friendica.com> | 2012-11-27 17:09:01 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-27 17:09:01 -0800 |
commit | 2fe2de1d5ac991d2bc20dd2df8eb071f5c8039a7 (patch) | |
tree | 53a36053fd4057d8c31932b5f089583669492580 /include/items.php | |
parent | f3fdbb6021bd2e20f728149e7534ffdaadbfda36 (diff) | |
download | volse-hubzilla-2fe2de1d5ac991d2bc20dd2df8eb071f5c8039a7.tar.gz volse-hubzilla-2fe2de1d5ac991d2bc20dd2df8eb071f5c8039a7.tar.bz2 volse-hubzilla-2fe2de1d5ac991d2bc20dd2df8eb071f5c8039a7.zip |
got comments going back and forth - we really need local_deliver now since even local deliveries are going through zot and that isn't necessary or desirable in the long term
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 47b919bc6..a6ecbbb88 100755 --- a/include/items.php +++ b/include/items.php @@ -1249,7 +1249,7 @@ function item_store($arr,$force_parent = false) { dbesc($arr['uri']), intval($arr['uid']) ); - if($r && count($r)) { + if($r) { logger('item-store: duplicate item ignored. ' . print_r($arr,true)); return 0; } |