Fix for error in delete function, improved query for community.
This commit is contained in:
parent
1a0a80c310
commit
2ac42036fb
2 changed files with 11 additions and 4 deletions
|
@ -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"])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue