]> git.mxchange.org Git - friendica.git/commitdiff
D* event formatting
authorfriendica <info@friendica.com>
Wed, 25 Jan 2012 23:16:43 +0000 (15:16 -0800)
committerfriendica <info@friendica.com>
Wed, 25 Jan 2012 23:16:43 +0000 (15:16 -0800)
include/bb2diaspora.php

index 8f17f2e36fb595df062b761742ef0076e8cbf32c..ab124228df26714b35031a32324232b3bd6455d9 100755 (executable)
@@ -115,6 +115,7 @@ function bb2diaspora($Text,$preserve_nl = false) {
 
 
        $Text = preg_replace("/\[img\](.*?)\[\/img\]/", '![' . t('image/photo') . '](' . '$1' . ')', $Text);
+       $Text = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/", '![' . t('image/photo') . '](' . '$2' . ')', $Text);
 
        // Perform MAIL Search
        $Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '[$1](mailto:$1)', $Text);
@@ -241,7 +242,7 @@ function format_event_diaspora($ev) {
 
        $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM
 
-       $o = 'Friendika event notification:' . "\n";
+       $o = 'Friendica event notification:' . "\n";
 
        $o .= '**' . bb2diaspora($ev['desc']) .  '**' . "\n";