mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-08 08:35:31 +02:00
fix preview of postings with embedded bbcode
git-svn-id: file:///svn/phpbb/trunk@4483 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
db2a73d2f0
commit
d8042fab7b
@ -83,7 +83,7 @@ function format_display(&$message, &$signature, $uid, $siguid, $html, $bbcode, $
|
|||||||
global $auth, $forum_id, $config, $censors, $user, $bbcode, $phpbb_root_path;
|
global $auth, $forum_id, $config, $censors, $user, $bbcode, $phpbb_root_path;
|
||||||
|
|
||||||
// Second parse bbcode here
|
// Second parse bbcode here
|
||||||
$message = $bbcode->bbcode_second_pass($message, $uid);
|
$bbcode->bbcode_second_pass($message, $uid);
|
||||||
|
|
||||||
// If we allow users to disable display of emoticons we'll need an appropriate
|
// If we allow users to disable display of emoticons we'll need an appropriate
|
||||||
// check and preg_replace here
|
// check and preg_replace here
|
||||||
@ -102,7 +102,7 @@ function format_display(&$message, &$signature, $uid, $siguid, $html, $bbcode, $
|
|||||||
{
|
{
|
||||||
$signature = trim($signature);
|
$signature = trim($signature);
|
||||||
|
|
||||||
$signature = $bbcode->bbcode_second_pass($signature, $siguid);
|
$bbcode->bbcode_second_pass($signature, $siguid);
|
||||||
|
|
||||||
$signature = (!$config['enable_smilies']) ? preg_replace('#<!\-\- s(.*?) \-\-><img src="\{SMILE_PATH\}\/.*? \/><!\-\- s\1 \-\->#', '\1', $signature) : str_replace('<img src="{SMILE_PATH}', '<img src="' . $phpbb_root_path . $config['smilies_path'], $signature);
|
$signature = (!$config['enable_smilies']) ? preg_replace('#<!\-\- s(.*?) \-\-><img src="\{SMILE_PATH\}\/.*? \/><!\-\- s\1 \-\->#', '\1', $signature) : str_replace('<img src="{SMILE_PATH}', '<img src="' . $phpbb_root_path . $config['smilies_path'], $signature);
|
||||||
|
|
||||||
|
@ -483,7 +483,6 @@ if ($submit || $preview || $refresh)
|
|||||||
|
|
||||||
$current_time = time();
|
$current_time = time();
|
||||||
|
|
||||||
|
|
||||||
// If replying/quoting and last post id has changed
|
// If replying/quoting and last post id has changed
|
||||||
// give user option to continue submit or return to post
|
// give user option to continue submit or return to post
|
||||||
// notify and show user the post made between his request and the final submit
|
// notify and show user the post made between his request and the final submit
|
||||||
@ -1468,7 +1467,7 @@ function topic_review($topic_id, $forum_id, $is_inline_review = false)
|
|||||||
|
|
||||||
if ($row['bbcode_bitfield'])
|
if ($row['bbcode_bitfield'])
|
||||||
{
|
{
|
||||||
$bbcode->bbcode_second_pass(&$message, $row['bbcode_uid'], $row['bbcode_bitfield']);
|
$bbcode->bbcode_second_pass($message, $row['bbcode_uid'], $row['bbcode_bitfield']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (count($censors['match']))
|
if (count($censors['match']))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user