aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/index.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-09-14 14:57:29 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-09-14 14:57:29 +0000
commit79137c312c15638a380adacb18a2d7194f42f09d (patch)
treea96cf32a8b8242484bee18db3e3a19ebfdfb3f25 /phpBB/index.php
parent665adc1722385e134ef20f8e470d5593a8be284b (diff)
downloadforums-79137c312c15638a380adacb18a2d7194f42f09d.tar
forums-79137c312c15638a380adacb18a2d7194f42f09d.tar.gz
forums-79137c312c15638a380adacb18a2d7194f42f09d.tar.bz2
forums-79137c312c15638a380adacb18a2d7194f42f09d.tar.xz
forums-79137c312c15638a380adacb18a2d7194f42f09d.zip
- Fix some bugs
- fixed retrieving of permissions if the LIKE statement is used as well as proper supporting (needs testing on mssql) git-svn-id: file:///svn/phpbb/trunk@6366 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/index.php')
-rw-r--r--phpBB/index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/index.php b/phpBB/index.php
index 8cde84904f..af72cc0be1 100644
--- a/phpBB/index.php
+++ b/phpBB/index.php
@@ -83,9 +83,9 @@ $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_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'),
'S_LOGIN_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login'),