aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin
diff options
context:
space:
mode:
authorthe_systech <the_systech@users.sourceforge.net>2001-12-07 17:07:39 +0000
committerthe_systech <the_systech@users.sourceforge.net>2001-12-07 17:07:39 +0000
commit30d5fd0030b0b2962db6c859d4f049c4b5c1a5bc (patch)
tree9e33dbeeb95b6efafad0f17a5bda4b5c96b8428f /phpBB/admin
parent61430ef728cdf4968c63b0f835474fa5eb138f1c (diff)
downloadforums-30d5fd0030b0b2962db6c859d4f049c4b5c1a5bc.tar
forums-30d5fd0030b0b2962db6c859d4f049c4b5c1a5bc.tar.gz
forums-30d5fd0030b0b2962db6c859d4f049c4b5c1a5bc.tar.bz2
forums-30d5fd0030b0b2962db6c859d4f049c4b5c1a5bc.tar.xz
forums-30d5fd0030b0b2962db6c859d4f049c4b5c1a5bc.zip
Some fixes for missused language variables.
git-svn-id: file:///svn/phpbb/trunk@1524 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin')
-rw-r--r--phpBB/admin/admin_forum_prune.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/admin_forum_prune.php b/phpBB/admin/admin_forum_prune.php
index eb6333f98b..e21345fe2b 100644
--- a/phpBB/admin/admin_forum_prune.php
+++ b/phpBB/admin/admin_forum_prune.php
@@ -153,8 +153,8 @@ else
//
$template->assign_vars(array(
"L_FORUM_PRUNE" => $lang['Forum_Prune'],
- "L_SELECT_FORUM" => $lang['Select_a'] . " " . $lang['Forum'],
- "L_LOOK_UP" => $lang['Look_up'] . " " . $lang['Forum'],
+ "L_SELECT_FORUM" => $lang['Select_a_Forum'],
+ "L_LOOK_UP" => $lang['Look_up_Forum'],
"S_FORUMPRUNE_ACTION" => append_sid("admin_forum_prune.$phpEx"),
"S_FORUMS_SELECT" => $select_list)