diff options
author | Mario <mario@mariovavti.com> | 2021-02-19 10:11:24 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-19 10:11:24 +0000 |
commit | a2d170385b3c02ad284535ec337acda237e2e353 (patch) | |
tree | bf8e8ccd91811541c9b49250cf6352b4836d8f7a /Zotlabs/Module/Item.php | |
parent | a27572698888649f662e7465ad338cf9b6e9fcc2 (diff) | |
download | volse-hubzilla-a2d170385b3c02ad284535ec337acda237e2e353.tar.gz volse-hubzilla-a2d170385b3c02ad284535ec337acda237e2e353.tar.bz2 volse-hubzilla-a2d170385b3c02ad284535ec337acda237e2e353.zip |
deprecate summary tag in favour of a separate input field
Diffstat (limited to 'Zotlabs/Module/Item.php')
-rw-r--r-- | Zotlabs/Module/Item.php | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index b30adeb53..bc35ac452 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -821,18 +821,7 @@ class Item extends Controller { // and will require alternatives for alternative content-types (text/html, text/markdown, text/plain, etc.) // we may need virtual or template classes to implement the possible alternatives - if(strpos($body,'[/summary]') !== false) { - $match = ''; - $cnt = preg_match("/\[summary\](.*?)\[\/summary\]/ism",$body,$match); - if($cnt) { - $summary .= $match[1]; - } - $body_content = preg_replace("/\[summary\](.*?)\[\/summary\]/ism", '',$body); - $body = trim($body_content); - } - $summary = cleanup_bbcode($summary); - $body = cleanup_bbcode($body); // Look for tags and linkify them @@ -887,15 +876,10 @@ class Item extends Controller { if(! $preview) { fix_attached_photo_permissions($profile_uid,$owner_xchan['xchan_hash'],((strpos($body,'[/crypt]')) ? $_POST['media_str'] : $body),$str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny); - fix_attached_photo_permissions($profile_uid,$owner_xchan['xchan_hash'],((strpos($summary,'[/crypt]')) ? $_POST['media_str'] : $summary),$str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny); - - fix_attached_file_permissions($channel,$observer['xchan_hash'],((strpos($body,'[/crypt]')) ? $_POST['media_str'] : $body),$str_contact_allow,$str_group_allow,$str_contact_deny,$str_group_deny); - } - $attachments = ''; $match = false; @@ -933,10 +917,9 @@ class Item extends Controller { } } + // BBCODE end alert } - // BBCODE end alert - if(strlen($categories)) { $cats = explode(',',$categories); |