diff options
-rw-r--r-- | mod/search.php | 4 | ||||
-rw-r--r-- | version.inc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mod/search.php b/mod/search.php index 6d79f5eee..28d6c7697 100644 --- a/mod/search.php +++ b/mod/search.php @@ -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'); diff --git a/version.inc b/version.inc index 889588612..3f9529176 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-05-23.1041 +2015-05-24.1042 |