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 .= '
Items tagged with: ' . htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '
';
+ $o .= '' . sprintf( t('Items tagged with: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '
';
else
- $o .= 'Search results for: ' . htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '
';
+ $o .= '' . sprintf( t('Search results for: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8') . '
';
$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