mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Wrong constant URL used in redirect upon deletion of single post, bug #533823
git-svn-id: file:///svn/phpbb/trunk@2421 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
5e3a33efb2
commit
5664a3637b
1 changed files with 1 additions and 1 deletions
|
@ -570,7 +570,7 @@ function delete_post($mode, &$post_data, &$message, &$meta, &$forum_id, &$topic_
|
|||
|
||||
if ( $mode == 'delete' && $post_data['first_post'] && $post_data['last_post'] )
|
||||
{
|
||||
$meta = '<meta http-equiv="refresh" content="3;url=' . append_sid("viewforum.$phpEx?" . POST_TOPIC_URL . "=" . $forum_id) . '">';
|
||||
$meta = '<meta http-equiv="refresh" content="3;url=' . append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=" . $forum_id) . '">';
|
||||
$message = $lang['Deleted'];
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue