]> git.mxchange.org Git - friendica.git/commitdiff
using sprintf
authorrabuzarus <>
Tue, 26 May 2015 12:49:53 +0000 (14:49 +0200)
committerrabuzarus <>
Tue, 26 May 2015 12:49:53 +0000 (14:49 +0200)
mod/search.php

index f759a7f9910c293072609840092efe75a4f08ef4..5fc96178501f557c73329779bca13aa95aa427e7 100644 (file)
@@ -177,9 +177,9 @@ function search_content(&$a) {
 
 
        if($tag)
-               $o .= '<h2>' . t('Items tagged with:')  . ' ' . $search . '</h2>';
+               $o .= '<h2>' . sprintf( t('Items tagged with: %s'), $search) . '</h2>';
        else
-               $o .= '<h2>' . t('Search results for:') . ' ' . $search . '</h2>';
+               $o .= '<h2>' . sprintf( t('Search results for: %s'), $search) . '</h2>';
 
        logger("Start Conversation for '".$search."'", LOGGER_DEBUG);
        $o .= conversation($a,$r,'search',false);