mirror of
https://github.com/friendica/friendica
synced 2025-04-27 10:30:10 +00:00
Bugfix: Fixed two bad sql queries
This commit is contained in:
parent
e0d329ece9
commit
41613ec55d
2 changed files with 2 additions and 2 deletions
|
@ -176,7 +176,7 @@ function delete_thread($itemid, $itemuri = "") {
|
|||
intval($item["uid"])
|
||||
);
|
||||
if (!count($r)) {
|
||||
$r = q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = 0)",
|
||||
$r = q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = 0",
|
||||
dbesc($itemuri)
|
||||
);
|
||||
logger("delete_thread: Deleted shadow for item ".$itemuri." - ".print_r($result, true), LOGGER_DEBUG);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue