1
0
Fork 0

Fix for error in delete function, improved query for community.

This commit is contained in:
Michael Vogel 2014-12-21 01:59:38 +01:00
commit 2ac42036fb
2 changed files with 11 additions and 4 deletions

View file

@ -17,7 +17,11 @@ function add_thread($itemid) {
logger("add_thread: Add thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
// Adding a shadow item entry
// Store a shadow copy of public items for displaying a global community page?
if (!get_config('system', 'global_community'))
return;
// is it already a copy?
if (($itemid == 0) OR ($item['uid'] == 0))
return;
@ -139,7 +143,7 @@ function delete_thread($itemid) {
logger("delete_thread: Deleted thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
if ($count($item)) {
if (count($item)) {
$r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND NOT (`uid` IN (%d, 0))",
dbesc($item["uri"]),
intval($item["uid"])