aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/acp/common.php
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2008-09-26 12:42:47 +0000
committerChris Smith <toonarmy@phpbb.com>2008-09-26 12:42:47 +0000
commitc0f6538cf6d9f6f0aca04cd97b9ed94457f72ad4 (patch)
treedc7fa3dd2a814292a76bd00c6891c1bbdeaa9e00 /phpBB/language/en/acp/common.php
parentc1407d80472c6df7f3c436d5e1f11382f37f33f3 (diff)
downloadforums-c0f6538cf6d9f6f0aca04cd97b9ed94457f72ad4.tar
forums-c0f6538cf6d9f6f0aca04cd97b9ed94457f72ad4.tar.gz
forums-c0f6538cf6d9f6f0aca04cd97b9ed94457f72ad4.tar.bz2
forums-c0f6538cf6d9f6f0aca04cd97b9ed94457f72ad4.tar.xz
forums-c0f6538cf6d9f6f0aca04cd97b9ed94457f72ad4.zip
Duplicate log messages for deleting a topic ('LOG_TOPIC_DELETED' has been deprecated in favour of 'LOG_DELETE_TOPIC').
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8942 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en/acp/common.php')
-rw-r--r--phpBB/language/en/acp/common.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php
index 06b30cf03b..cb3442e9a9 100644
--- a/phpBB/language/en/acp/common.php
+++ b/phpBB/language/en/acp/common.php
@@ -488,7 +488,6 @@ $lang = array_merge($lang, array(
'LOG_SPLIT_DESTINATION' => '<strong>Moved split posts</strong><br />» to %s',
'LOG_SPLIT_SOURCE' => '<strong>Split posts</strong><br />» from %s',
- 'LOG_TOPIC_DELETED' => '<strong>Deleted topic</strong><br />» %s',
'LOG_TOPIC_APPROVED' => '<strong>Approved topic</strong><br />» %s',
'LOG_TOPIC_DISAPPROVED' => '<strong>Disapproved topic “%1$s” with the following reason</strong><br />%2$s',
'LOG_TOPIC_RESYNC' => '<strong>Resynchronised topic counters</strong><br />» %s',
@@ -688,4 +687,9 @@ $lang = array_merge($lang, array(
'LOG_WORD_EDIT' => '<strong>Edited word censor</strong><br />» %s',
));
+// Two language keys with the same text were used in different locations
+// LOG_DELETE_TOPIC is the correct one, this line is here so that existing
+// log entries are not broken. Ensure it is included in your language file.
+$lang['LOG_TOPIC_DELETED'] = $lang['LOG_DELETE_TOPIC'];
+
?> \ No newline at end of file