diff options
author | Nils Adermann <naderman@naderman.de> | 2006-03-27 18:45:18 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2006-03-27 18:45:18 +0000 |
commit | 397fff57f2f62180996e5cfadc054d12554e3813 (patch) | |
tree | ad903de79ca0d619c27b194571bb76755efcaaf0 /phpBB | |
parent | e7140d658d6bd37023eca51d6d01207a34fe2d0e (diff) | |
download | forums-397fff57f2f62180996e5cfadc054d12554e3813.tar forums-397fff57f2f62180996e5cfadc054d12554e3813.tar.gz forums-397fff57f2f62180996e5cfadc054d12554e3813.tar.bz2 forums-397fff57f2f62180996e5cfadc054d12554e3813.tar.xz forums-397fff57f2f62180996e5cfadc054d12554e3813.zip |
- redirection should properly work now
- align jumpbox properly
git-svn-id: file:///svn/phpbb/trunk@5734 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 6 | ||||
-rwxr-xr-x | phpBB/includes/mcp/mcp_reports.php | 2 | ||||
-rw-r--r-- | phpBB/styles/subSilver/template/mcp_footer.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subSilver/template/memberlist_body.html | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index e63ffbbdc2..c09a2af257 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -517,7 +517,7 @@ function approve_post($post_id_list, $mode) else { meta_refresh(3, $redirect); - trigger_error($user->lang[$success_msg] . '<br /><br />' . sprintf($user->lang['RETURN_PAGE'], '<a href="' . $phpbb_root_path . $redirect . '">', '</a>') . '<br /><br />' . sprintf($user->lang['RETURN_FORUM'], "<a href=\"{$phpbb_root_path}viewforum.$phpEx$SID&f=" . $forum_id . '">', '</a>')); + trigger_error($user->lang[$success_msg] . '<br /><br />' . sprintf($user->lang['RETURN_PAGE'], "<a href=\"$redirect\">", '</a>')); } } @@ -720,8 +720,8 @@ function disapprove_post($post_id_list, $mode) } else { - meta_refresh(3, "viewforum.$phpEx$SID&f=$forum_id"); - trigger_error($user->lang[$success_msg] . '<br /><br />' . sprintf($user->lang['RETURN_FORUM'], "<a href=\"{$phpbb_root_path}viewforum.$phpEx$SID&f=" . $forum_id . '">', '</a>')); + meta_refresh(3, $redirect); + trigger_error($user->lang[$success_msg] . '<br /><br />' . sprintf($user->lang['RETURN_PAGE'], "<a href=\"$redirect\">", '</a>')); } } diff --git a/phpBB/includes/mcp/mcp_reports.php b/phpBB/includes/mcp/mcp_reports.php index 30d4466157..390024e199 100755 --- a/phpBB/includes/mcp/mcp_reports.php +++ b/phpBB/includes/mcp/mcp_reports.php @@ -489,7 +489,7 @@ function close_report($post_id_list, $mode, $action) } else { - meta_refresh(3, "viewforum.$phpEx$SID&f=$forum_id"); + meta_refresh(3, $redirect); trigger_error($user->lang[$success_msg] . '<br /><br />' . sprintf($user->lang['RETURN_PAGE'], "<a href=\"$redirect\">", '</a>')); } } diff --git a/phpBB/styles/subSilver/template/mcp_footer.html b/phpBB/styles/subSilver/template/mcp_footer.html index 4b4cc508ee..95168ffa2a 100644 --- a/phpBB/styles/subSilver/template/mcp_footer.html +++ b/phpBB/styles/subSilver/template/mcp_footer.html @@ -30,6 +30,6 @@ <br clear="all" /> - <div style="float: right"><!-- INCLUDE jumpbox.html --></div> + <div align="right"><!-- INCLUDE jumpbox.html --></div> <!-- INCLUDE overall_footer.html -->
\ No newline at end of file diff --git a/phpBB/styles/subSilver/template/memberlist_body.html b/phpBB/styles/subSilver/template/memberlist_body.html index bfe80719cf..c44d3a3a4b 100644 --- a/phpBB/styles/subSilver/template/memberlist_body.html +++ b/phpBB/styles/subSilver/template/memberlist_body.html @@ -104,6 +104,6 @@ <br clear="all" /> - <div style="float: right"><!-- INCLUDE jumpbox.html --></div> + <div align="right"><!-- INCLUDE jumpbox.html --></div> <!-- INCLUDE overall_footer.html -->
\ No newline at end of file |