diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-03-24 10:41:43 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-03-24 10:41:43 +0100 |
commit | c5ef29a6f1729ddc6cfec18247c8a4fe13b6d333 (patch) | |
tree | 81fc4ce624da04a2614fb08757a0fcf7fd412b78 /phpBB/viewtopic.php | |
parent | 1e0cda3e8affba9b76cdbdcc655316389668f3bd (diff) | |
download | forums-c5ef29a6f1729ddc6cfec18247c8a4fe13b6d333.tar forums-c5ef29a6f1729ddc6cfec18247c8a4fe13b6d333.tar.gz forums-c5ef29a6f1729ddc6cfec18247c8a4fe13b6d333.tar.bz2 forums-c5ef29a6f1729ddc6cfec18247c8a4fe13b6d333.tar.xz forums-c5ef29a6f1729ddc6cfec18247c8a4fe13b6d333.zip |
[ticket/14530] Add accidentally removed sig_parsed flag
This was removed by accident previously while moving from the use of the
old bbcode class to the generate_test_for_display function.
PHPBB3-14530
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 87de7c79a4..392b336ce6 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1597,6 +1597,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i) { $parse_flags = ($user_cache[$poster_id]['sig_bbcode_bitfield'] ? OPTION_FLAG_BBCODE : 0) | OPTION_FLAG_SMILIES; $user_cache[$poster_id]['sig'] = generate_text_for_display($user_cache[$poster_id]['sig'], $user_cache[$poster_id]['sig_bbcode_uid'], $user_cache[$poster_id]['sig_bbcode_bitfield'], $parse_flags, true); + $user_cache[$poster_id]['sig_parsed'] = true; } // Parse the message and subject |