]> git.mxchange.org Git - friendica.git/commitdiff
fix html reshares when editplain in use
authorfriendica <info@friendica.com>
Tue, 6 Mar 2012 23:28:27 +0000 (15:28 -0800)
committerfriendica <info@friendica.com>
Tue, 6 Mar 2012 23:28:27 +0000 (15:28 -0800)
mod/share.php

index bba527342aaf7e5bab10f2656496966e760127d9..f6c025e3cef29ea774c58bae14d341c94a18ec78 100755 (executable)
@@ -16,10 +16,18 @@ function share_init(&$a) {
 
        $o = '';
 
-       $o .= '&#x2672; <a href="' . $r[0]['author-link'] . '">' . $r[0]['author-name'] . '</a><br />';
-       if($r[0]['title'])
-               $o .= '<strong>' . $r[0]['title'] . '</strong><br />';
-       $o .= bbcode($r[0]['body'], true);
-       echo $o . '<br />';
+       if(local_user() && intval(get_pconfig(local_user(),'system','plaintext'))) {
+               $o .= '&#x2672; [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]';
+               if($r[0]['title'])
+                       $o .= '[b]' . $r[0]['title'] . '[/b]' . "\n";
+               $o .= $r[0]['body'] . "\n";
+       }
+       else {
+               $o .= '&#x2672; <a href="' . $r[0]['author-link'] . '">' . $r[0]['author-name'] . '</a><br />';
+               if($r[0]['title'])
+                       $o .= '<strong>' . $r[0]['title'] . '</strong><br />';
+               $o .= bbcode($r[0]['body'], true) . '<br />';
+       }
+       echo $o;
        killme();  
 }