mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-06 23:55:26 +02:00
Regression bugs from: http://phpbb.cvs.sourceforge.net/phpbb/phpBB2/includes/functions_posting.php?r1=1.233&r2=1.234
Anchor fragments should be "#p12345", not "p=12345" (which AFAIK ends up working the same as "#p") git-svn-id: file:///svn/phpbb/trunk@7494 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
27a0e285a0
commit
1eee5ca388
@ -2093,7 +2093,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
|
||||
if ($mode != 'post')
|
||||
{
|
||||
$params .= '&p=' . $data['post_id'];
|
||||
$add_anchor = '#p=' . $data['post_id'];
|
||||
$add_anchor = '#p' . $data['post_id'];
|
||||
}
|
||||
}
|
||||
else if ($mode != 'post' && $mode != 'edit_first_post' && $mode != 'edit_topic')
|
||||
|
Loading…
x
Reference in New Issue
Block a user