diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-05-28 16:11:31 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-05-28 16:11:31 +0000 |
commit | ab3e381267df9d897c06af94eb6ebfa857c3d1f2 (patch) | |
tree | fd2db4a758faa218cb713582de626da029a1f902 | |
parent | 156ea6714c93ff07362b60a562ef604bad9a6947 (diff) | |
download | elgg-ab3e381267df9d897c06af94eb6ebfa857c3d1f2.tar.gz elgg-ab3e381267df9d897c06af94eb6ebfa857c3d1f2.tar.bz2 |
Group search language correction
git-svn-id: https://code.elgg.org/elgg/trunk@3311 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | languages/en.php | 3 | ||||
-rw-r--r-- | search/groups.php | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/languages/en.php b/languages/en.php index 06af1264f..8d3b6b621 100644 --- a/languages/en.php +++ b/languages/en.php @@ -414,7 +414,8 @@ To remove a widget drag it back to the <b>Widget gallery</b>.", 'search' => "Search",
'searchtitle' => "Search: %s",
- 'users:searchtitle' => "Searching for users: %s",
+ 'users:searchtitle' => "Searching for users: %s", + 'groups:searchtitle' => "Searching for users: %s",
'advancedsearchtitle' => "%s with results matching %s",
'notfound' => "No results found.",
'next' => "Next",
diff --git a/search/groups.php b/search/groups.php index e04a14606..a925dfea2 100644 --- a/search/groups.php +++ b/search/groups.php @@ -22,7 +22,7 @@ $tag = get_input('tag');
if (!empty($tag)) {
- $title = sprintf(elgg_echo('users:searchtitle'),$tag);
+ $title = sprintf(elgg_echo('groups:searchtitle'),$tag);
$body = "";
$body .= elgg_view_title($title); // elgg_view_title(sprintf(elgg_echo('searchtitle'),$tag));
$body .= elgg_view('group/search/startblurb',array('tag' => $tag));
|