diff options
author | friendica <info@friendica.com> | 2011-12-01 18:27:45 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-01 18:27:45 -0800 |
commit | 513c1c0d683fc770de7d9a78e0a83df9211bb4aa (patch) | |
tree | 384a8e056de800f6656ff9df3935e42f3e81bf07 /include/items.php | |
parent | ac3df5fece6e1f5a6eab3a2694b15bcf45ed31e4 (diff) | |
download | volse-hubzilla-513c1c0d683fc770de7d9a78e0a83df9211bb4aa.tar.gz volse-hubzilla-513c1c0d683fc770de7d9a78e0a83df9211bb4aa.tar.bz2 volse-hubzilla-513c1c0d683fc770de7d9a78e0a83df9211bb4aa.zip |
dynamic delete icons for saved-search on network page
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index b802a59bd..50c5e56c1 100644 --- a/include/items.php +++ b/include/items.php @@ -1924,7 +1924,7 @@ function local_delivery($importer,$data) { if($deleted) { $r = q("SELECT `item`.*, `contact`.`self` FROM `item` left join contact on `item`.`contact-id` = `contact`.`id` - WHERE `uri` = '%s' AND `uid` = %d AND `contact-id` = %d LIMIT 1", + WHERE `uri` = '%s' AND `item`.`uid` = %d AND `contact-id` = %d LIMIT 1", dbesc($uri), intval($importer['importer_uid']), intval($importer['id']) |