diff options
Diffstat (limited to 'mod/editpost.php')
-rw-r--r-- | mod/editpost.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/mod/editpost.php b/mod/editpost.php index e36e0ea5a..af6f741c6 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -1,7 +1,6 @@ <?php require_once('acl_selectors.php'); -require_once('include/crypto.php'); function editpost_content(&$a) { @@ -48,15 +47,6 @@ function editpost_content(&$a) { )); - - if($itm[0]['item_flags'] & ITEM_OBSCURED) { - $key = get_config('system','prvkey'); - if($itm[0]['title']) - $itm[0]['title'] = aes_unencapsulate(json_decode($itm[0]['title'],true),$key); - if($itm[0]['body']) - $itm[0]['body'] = aes_unencapsulate(json_decode($itm[0]['body'],true),$key); - } - $tpl = get_markup_template("jot.tpl"); $jotplugins = ''; |