diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-05-04 18:25:01 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-05-04 18:25:01 +0000 |
| commit | b5608afe0331a38c7761558a20337814f43bb162 (patch) | |
| tree | 906b9dc8799e2439dcce640d70abf8da5c8f1496 /phpBB/ucp.php | |
| parent | 3a38f801687b3d20c594700691d28bf684bf390d (diff) | |
| download | forums-b5608afe0331a38c7761558a20337814f43bb162.tar forums-b5608afe0331a38c7761558a20337814f43bb162.tar.gz forums-b5608afe0331a38c7761558a20337814f43bb162.tar.bz2 forums-b5608afe0331a38c7761558a20337814f43bb162.tar.xz forums-b5608afe0331a38c7761558a20337814f43bb162.zip | |
- fix bug #1727 (need to be watched - problems could arise by this change)
- added a note about login_box() to the coding guidelines
git-svn-id: file:///svn/phpbb/trunk@5881 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/ucp.php')
| -rwxr-xr-x | phpBB/ucp.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/ucp.php b/phpBB/ucp.php index 65e9adaabe..8e178537b3 100755 --- a/phpBB/ucp.php +++ b/phpBB/ucp.php @@ -74,7 +74,7 @@ switch ($mode) redirect("index.$phpEx$SID"); } - login_box("index.$phpEx$SID"); + login_box("index.$phpEx"); break; case 'logout': @@ -86,7 +86,7 @@ switch ($mode) meta_refresh(3, "index.$phpEx$SID"); - $message = $user->lang['LOGOUT_REDIRECT'] . '<br /><br />' . sprintf($user->lang['RETURN_PAGE'], '<a href="' . "{$phpbb_root_path}index.$phpEx$SID" . '">', '</a> '); + $message = $user->lang['LOGOUT_REDIRECT'] . '<br /><br />' . sprintf($user->lang['RETURN_INDEX'], '<a href="' . "{$phpbb_root_path}index.$phpEx$SID" . '">', '</a> '); trigger_error($message); break; @@ -103,7 +103,7 @@ switch ($mode) redirect("index.$phpEx$SID"); } - login_box("index.$phpEx$SID"); + login_box(); } $template->set_filenames(array( |
