From 823a484e77ba9e1ce51451054fa120b6201dd298 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 1 Apr 2003 00:50:06 +0000 Subject: Lang string name changes for topic title prefixes git-svn-id: file:///svn/phpbb/trunk@3773 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/viewforum.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'phpBB/viewforum.php') diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index 067955751d..147583472c 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -318,7 +318,7 @@ if ($forum_data['forum_postable']) $topic_type = ''; if ($row['topic_status'] == ITEM_MOVED) { - $topic_type = $user->lang['TOPIC_MOVED'] . ' '; + $topic_type = $user->lang['VIEW_TOPIC_MOVED'] . ' '; $topic_id = $row['topic_moved_id']; $folder_image = 'folder'; @@ -330,13 +330,13 @@ if ($forum_data['forum_postable']) switch ($row['topic_type']) { case POST_ANNOUNCE: - $topic_type = $user->lang['TOPIC_ANNOUNCEMENT'] . ' '; + $topic_type = $user->lang['VIEW_TOPIC_ANNOUNCEMENT'] . ' '; $folder = 'folder_announce'; $folder_new = 'folder_announce_new'; break; case POST_STICKY: - $topic_type = $user->lang['TOPIC_STICKY'] . ' '; + $topic_type = $user->lang['VIEW_TOPIC_STICKY'] . ' '; $folder = 'folder_sticky'; $folder_new = 'folder_sticky_new'; break; @@ -357,7 +357,7 @@ if ($forum_data['forum_postable']) if ($row['topic_status'] == ITEM_LOCKED) { - $topic_type = $user->lang['TOPIC_LOCKED'] . ' '; + $topic_type = $user->lang['VIEW_TOPIC_LOCKED'] . ' '; $folder = 'folder_locked'; $folder_new = 'folder_locked_new'; } @@ -387,7 +387,7 @@ if ($forum_data['forum_postable']) if (intval($row['poll_start'])) { - $topic_type .= $user->lang['Topic_Poll'] . ' '; + $topic_type .= $user->lang['VIEW_TOPIC_POLL'] . ' '; } -- cgit v1.2.1