search result heading not translatable

This commit is contained in:
redmatrix 2015-05-24 15:57:59 -07:00
parent 7f9e4d6add
commit 52e38d7c24
2 changed files with 3 additions and 3 deletions

View File

@ -203,9 +203,9 @@ function search_content(&$a,$update = 0, $load = false) {
}
if($tag)
$o .= '<h2>Items tagged with: ' . htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>';
$o .= '<h2>' . sprintf( t('Items tagged with: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>';
else
$o .= '<h2>Search results for: ' . htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>';
$o .= '<h2>' . sprintf( t('Search results for: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '</h2>';
$o .= conversation($a,$items,'search',$update,'client');

View File

@ -1 +1 @@
2015-05-23.1041
2015-05-24.1042