diff options
author | friendica <info@friendica.com> | 2013-02-18 15:15:55 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-18 15:15:55 -0800 |
commit | 65912ec0bfb112fd3dca4a8823bb834a1b1c80fc (patch) | |
tree | 4d4e6f6386bb85617b4a4f58133b5eaecc23d1ff /include/items.php | |
parent | a21e6cffa184d78b6214a0306e2d2a7bbfc8ddb1 (diff) | |
download | volse-hubzilla-65912ec0bfb112fd3dca4a8823bb834a1b1c80fc.tar.gz volse-hubzilla-65912ec0bfb112fd3dca4a8823bb834a1b1c80fc.tar.bz2 volse-hubzilla-65912ec0bfb112fd3dca4a8823bb834a1b1c80fc.zip |
moving on
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index 59bb58eaa..3fd43ca4e 100755 --- a/include/items.php +++ b/include/items.php @@ -4265,6 +4265,14 @@ function delete_item_lowlevel($item) { intval($item['uid']) ); + q("delete from term where oid = %d and otype = %d", + intval($item['id']), + intval(TERM_OBJ_POST) + ); + +// FIXME remove notifications for this item + + return true; } |