aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/ucp.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-01-25 21:01:52 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-01-25 21:01:52 +0000
commit90385cd79a550b4ac08e10e3b8a01abc37965bd4 (patch)
tree87838a4580032f81b981a0867cd2b766d3d81ab6 /phpBB/ucp.php
parent964615eb0799b2d20d9578af9e328fb1a348d8da (diff)
downloadforums-90385cd79a550b4ac08e10e3b8a01abc37965bd4.tar
forums-90385cd79a550b4ac08e10e3b8a01abc37965bd4.tar.gz
forums-90385cd79a550b4ac08e10e3b8a01abc37965bd4.tar.bz2
forums-90385cd79a550b4ac08e10e3b8a01abc37965bd4.tar.xz
forums-90385cd79a550b4ac08e10e3b8a01abc37965bd4.zip
- moved add_log out of functions_admin (this file should only be included in admin/admin-related pages)
- fixed cookie based topic tracking - added missing config variables - other minor things git-svn-id: file:///svn/phpbb/trunk@5494 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/ucp.php')
-rwxr-xr-xphpBB/ucp.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/ucp.php b/phpBB/ucp.php
index 51282ceedc..19ffa0bba5 100755
--- a/phpBB/ucp.php
+++ b/phpBB/ucp.php
@@ -76,7 +76,7 @@ switch ($mode)
}
login_box("index.$phpEx$SID");
- break;
+ break;
case 'logout':
if ($user->data['user_id'] != ANONYMOUS)
@@ -89,11 +89,11 @@ switch ($mode)
$message = $user->lang['LOGOUT_REDIRECT'] . '<br /><br />' . sprintf($user->lang['RETURN_PAGE'], '<a href="' . "{$phpbb_root_path}index.$phpEx$SID" . '">', '</a> ');
trigger_error($message);
- break;
+ break;
case 'terms_of_use':
case 'privacy_statement':
- break;
+ break;
case 'delete_cookies':
// Delete Cookies with dynamic names (do NOT delete poll cookies)
@@ -127,7 +127,7 @@ switch ($mode)
confirm_box(false, 'DELETE_COOKIES', '');
}
redirect("index.$phpEx$SID");
- break;
+ break;
}
// Only registered users can go beyond this point