]> git.mxchange.org Git - friendica.git/commitdiff
keep space before t() for legacy string puller
authorFriendika <info@friendika.com>
Wed, 20 Apr 2011 12:00:58 +0000 (05:00 -0700)
committerFriendika <info@friendika.com>
Wed, 20 Apr 2011 12:00:58 +0000 (05:00 -0700)
include/conversation.php
mod/dfrn_confirm.php

index a3b15146b413ee49ac4c37e153e4bac15ca8c7c5..cd24068599609045a95ab8aba3ede3ebbccf02c5 100644 (file)
@@ -58,7 +58,7 @@ function localize_item(&$item){
                $B = '[url=' . $Blink . ']' . $Bname . '[/url]';
                if ($Bphoto!="") $Bphoto = '[url=' . $Blink . '][img]' . $Bphoto . '[/img][/url]';
 
-               $item['body'] = sprintf(t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
+               $item['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
 
        }
         
index 7c28bf902b7359012186706f46f640e2618d7eac..d0543ac8459b7fc49675f5dbe74efb9473645ae1 100644 (file)
@@ -427,7 +427,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                                $A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
                                $B = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
                                $BPhoto = '[url=' . $contact['url'] . ']' . '[img]' . $contact['thumb'] . '[/img][/url]';
-                               $arr['body'] =  sprintf(t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
+                               $arr['body'] =  sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
 
                                $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $contact['name'] . '</title>'
                                        . '<id>' . $contact['url'] . '/' . $contact['name'] . '</id>';