diff options
author | friendica <info@friendica.com> | 2012-03-24 04:16:27 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-24 04:16:27 -0700 |
commit | 3aacc119a1d25f7ab4089482bbba7419c1357524 (patch) | |
tree | f915e4e6195aa88073352f50f79cf1c1d676b08b /include/diaspora.php | |
parent | 8c4fbc3b4d4c578485e7aeb5d7da4b2446002c3a (diff) | |
download | volse-hubzilla-3aacc119a1d25f7ab4089482bbba7419c1357524.tar.gz volse-hubzilla-3aacc119a1d25f7ab4089482bbba7419c1357524.tar.bz2 volse-hubzilla-3aacc119a1d25f7ab4089482bbba7419c1357524.zip |
block filed items from deletion
Diffstat (limited to 'include/diaspora.php')
-rwxr-xr-x | include/diaspora.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index 1b5af42cd..84d28a7ec 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1737,7 +1737,7 @@ function diaspora_retraction($importer,$xml) { contact_remove($contact['id']); } elseif($type === 'Post') { - $r = q("select * from item where guid = '%s' and uid = %d limit 1", + $r = q("select * from item where guid = '%s' and uid = %d and not file like '%%[%%' limit 1", dbesc('guid'), intval($importer['uid']) ); @@ -1785,7 +1785,7 @@ function diaspora_signed_retraction($importer,$xml,$msg) { } if($type === 'StatusMessage') { - $r = q("select * from item where guid = '%s' and uid = %d limit 1", + $r = q("select * from item where guid = '%s' and uid = %d and not file like '%%[%%' limit 1", dbesc($guid), intval($importer['uid']) ); |