diff options
author | friendica <info@friendica.com> | 2015-01-22 18:41:10 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-22 18:41:10 -0800 |
commit | 6e0e3b2433fc426b758a55811f56536d58705813 (patch) | |
tree | a8d8fb7c63216cea94765e93be935f2b9d2fe227 /mod/editpost.php | |
parent | e46eba125888704b4381aa8418495e91eeb565c8 (diff) | |
download | volse-hubzilla-6e0e3b2433fc426b758a55811f56536d58705813.tar.gz volse-hubzilla-6e0e3b2433fc426b758a55811f56536d58705813.tar.bz2 volse-hubzilla-6e0e3b2433fc426b758a55811f56536d58705813.zip |
more expanding item flags
Diffstat (limited to 'mod/editpost.php')
-rw-r--r-- | mod/editpost.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/editpost.php b/mod/editpost.php index dfbc8766e..4ea0c9f2b 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -55,7 +55,7 @@ function editpost_content(&$a) { - if($itm[0]['item_flags'] & ITEM_OBSCURED) { + if(intval($itm[0]['item_obscured'])) { $key = get_config('system','prvkey'); if($itm[0]['title']) $itm[0]['title'] = crypto_unencapsulate(json_decode_plus($itm[0]['title']),$key); |