mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
fix subject bug
git-svn-id: file:///svn/phpbb/trunk@5011 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
cb3424716a
commit
34a954eaf1
1 changed files with 2 additions and 2 deletions
|
@ -494,7 +494,7 @@ if ($load && $drafts)
|
||||||
if ($submit || $preview || $refresh)
|
if ($submit || $preview || $refresh)
|
||||||
{
|
{
|
||||||
$topic_cur_post_id = request_var('topic_cur_post_id', 0);
|
$topic_cur_post_id = request_var('topic_cur_post_id', 0);
|
||||||
$subject = request_var('subject', '');
|
$subject = preg_replace('#&(\#[0-9]+;)#', '&\1', request_var('subject', ''));
|
||||||
|
|
||||||
if (strcmp($subject, strtoupper($subject)) == 0 && $subject)
|
if (strcmp($subject, strtoupper($subject)) == 0 && $subject)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue