X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=fbpost%2Ffbpost.php;h=6a0eb1973dabaeadd8bf66fb5fe7ab1cf3c3c2fa;hb=e3959ff3c76520785e3ba8272fd3cf95f8e06eb4;hp=0fc6dd6544131a708285a01e8ac4512681009e35;hpb=0655fe3cbab458d836b4508c9c7f1ee0b5506e2d;p=friendica-addons.git diff --git a/fbpost/fbpost.php b/fbpost/fbpost.php index 0fc6dd65..6a0eb197 100644 --- a/fbpost/fbpost.php +++ b/fbpost/fbpost.php @@ -357,32 +357,6 @@ function fbpost_jot_nets(&$a,&$b) { } } -function fbpost_ShareAttributes($match) { - - $attributes = $match[1]; - - $author = ""; - preg_match("/author='(.*?)'/ism", $attributes, $matches); - if ($matches[1] != "") - $author = $matches[1]; - - preg_match('/author="(.*?)"/ism', $attributes, $matches); - if ($matches[1] != "") - $author = $matches[1]; - - $headline = '
'; - - $headline .= sprintf(t('%s:'), $author); - - $headline .= "
"; - - //$text = "
".$headline."
".$match[2]."
"; - $text = "\n\t".$match[2].":\t"; - - return($text); -} - - /** * @param App $a * @param object $b @@ -563,29 +537,10 @@ function fbpost_post_hook(&$a,&$b) { // Convert recycle signs $body = str_replace("\t", " ", $body); // recycle 1 - $recycle = html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'); - $body = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', "\n\t$2:\t", $body); - // recycle 2 (Test) - $recycle = html_entity_decode("◌ ", ENT_QUOTES, 'UTF-8'); - $body = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', "\n\t$2:\t", $body); - - // share element - //$body = preg_replace_callback("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]/ism","fbpost_ShareAttributes", $body); - - //$bodyparts = explode("\t", $body); - // Doesn't help with multiple repeats - the problem has to be solved later - //if (sizeof($bodyparts) == 3) { - // $html = bbcode($bodyparts[2], false, false); - // $test = trim(html2plain($html, 0, true)); - - // if (trim($bodyparts[0]) == "") - // $body = trim($bodyparts[2]); - // else if (trim($test) == "") - // $body = trim($bodyparts[0]); - // else - // $body = trim($bodyparts[0])."\n\n".trim($bodyparts[1])."[quote]".trim($bodyparts[2])."[/quote]"; - //} else - $body = str_replace("\t", "", $body); + //$recycle = html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'); + //$body = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', "\n\t$2:\t", $body); + + $body = str_replace("\t", "", $body); // At first convert the text to html $html = bbcode($body, false, false, 2);