diff options
author | friendica <info@friendica.com> | 2015-01-22 21:04:54 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-22 21:04:54 -0800 |
commit | 4c2a1e572a03e253f05f03e400af26d403cbda32 (patch) | |
tree | edf7afa0bb97dfb9c8ea598a28c3e6281a65ec90 /mod/display.php | |
parent | 6e0e3b2433fc426b758a55811f56536d58705813 (diff) | |
download | volse-hubzilla-4c2a1e572a03e253f05f03e400af26d403cbda32.tar.gz volse-hubzilla-4c2a1e572a03e253f05f03e400af26d403cbda32.tar.bz2 volse-hubzilla-4c2a1e572a03e253f05f03e400af26d403cbda32.zip |
start on item_restrict conversion
Diffstat (limited to 'mod/display.php')
-rw-r--r-- | mod/display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/display.php b/mod/display.php index b9b660fdd..740050e41 100644 --- a/mod/display.php +++ b/mod/display.php @@ -250,7 +250,7 @@ function display_content(&$a, $update = 0, $load = false) { dbesc($item_hash) ); if($r) { - if($r[0]['item_flags'] & ITEM_DELETED) { + if(intval($r[0]['item_deleted'])) { notice( t('Item has been removed.') . EOL ); } else { |