aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/index.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-07-14 20:55:49 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-07-14 20:55:49 +0200
commite7e98f1de5c394859284f031f2a4f0c47534b311 (patch)
treece4bbebcac4517ed8d11788522abd96d04081eb6 /phpBB/index.php
parentda256b33d93978f672aa07e0e94be585a7d1d2ee (diff)
parent954b3c348454ee41eb8da189794ac34ffdd4a115 (diff)
downloadforums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar
forums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar.gz
forums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar.bz2
forums-e7e98f1de5c394859284f031f2a4f0c47534b311.tar.xz
forums-e7e98f1de5c394859284f031f2a4f0c47534b311.zip
Merge branch 'ticket/nickvergessen/7720' into develop-olympus
* ticket/nickvergessen/7720: [ticket/7720] Fix alternative image-description for unread posts.
Diffstat (limited to 'phpBB/index.php')
-rw-r--r--phpBB/index.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/index.php b/phpBB/index.php
index c3dbbd346e..cc83641acd 100644
--- a/phpBB/index.php
+++ b/phpBB/index.php
@@ -115,10 +115,10 @@ $template->assign_vars(array(
'LEGEND' => $legend,
'BIRTHDAY_LIST' => $birthday_list,
- 'FORUM_IMG' => $user->img('forum_read', 'NO_NEW_POSTS'),
- 'FORUM_NEW_IMG' => $user->img('forum_unread', 'NEW_POSTS'),
- 'FORUM_LOCKED_IMG' => $user->img('forum_read_locked', 'NO_NEW_POSTS_LOCKED'),
- 'FORUM_NEW_LOCKED_IMG' => $user->img('forum_unread_locked', 'NO_NEW_POSTS_LOCKED'),
+ 'FORUM_IMG' => $user->img('forum_read', 'NO_UNREAD_POSTS'),
+ 'FORUM_UNREAD_IMG' => $user->img('forum_unread', 'UNREAD_POSTS'),
+ 'FORUM_LOCKED_IMG' => $user->img('forum_read_locked', 'NO_UNREAD_POSTS_LOCKED'),
+ 'FORUM_UNREAD_LOCKED_IMG' => $user->img('forum_unread_locked', 'UNREAD_POSTS_LOCKED'),
'S_LOGIN_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login'),
'S_DISPLAY_BIRTHDAY_LIST' => ($config['load_birthdays']) ? true : false,