diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-26 01:17:40 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-26 01:17:40 +0000 |
commit | 5362625eabd86278d9f7cbc7175e02e3b5f613ca (patch) | |
tree | 34adeecdc30441ba7c4b497b986415d7608b933a /phpBB/index.php | |
parent | 4e43cb51536fdfff64d8560b054ad601949deb6d (diff) | |
download | forums-5362625eabd86278d9f7cbc7175e02e3b5f613ca.tar forums-5362625eabd86278d9f7cbc7175e02e3b5f613ca.tar.gz forums-5362625eabd86278d9f7cbc7175e02e3b5f613ca.tar.bz2 forums-5362625eabd86278d9f7cbc7175e02e3b5f613ca.tar.xz forums-5362625eabd86278d9f7cbc7175e02e3b5f613ca.zip |
Various changes, and tests ... marking/tracking is not complete ... tinkering, changing, etc. still to be done ... it's just I've made numerous and various changes to different files so a commit really is due
git-svn-id: file:///svn/phpbb/trunk@3953 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/index.php')
-rw-r--r-- | phpBB/index.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index b7b3489765..8b6b93cf29 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -36,16 +36,14 @@ $auth->acl($user->data); // Handle marking posts if ($mark_read == 'forums') { - if ($userdata['user_id']) + if ($userdata['user_id'] != ANONYMOUS) { markread('markall'); } - $template->assign_vars(array( - 'META' => '<meta http-equiv="refresh" content="3;url=' . "index.$phpEx$SID" . '">') - ); + meta_refresh(3, "index.$phpEx$SID"); - $message = $user->lang['Forums_marked_read'] . '<br /><br />' . sprintf($user->lang['RETURN_INDEX'], '<a href="' . "index.$phpEx$SID" . '">', '</a> '); + $message = $user->lang['FORUMS_MARKED'] . '<br /><br />' . sprintf($user->lang['RETURN_INDEX'], '<a href="' . "index.$phpEx$SID" . '">', '</a> '); trigger_error($message); } |