From ef36331c3e4201f36c3ff76a0d450e11292c2bea Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Thu, 6 Sep 2001 00:29:07 +0000 Subject: Numerous updates and additions for polling and assorted fixes ... or bugs, whichever they turn out to be git-svn-id: file:///svn/phpbb/trunk@987 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/bbcode.php | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'phpBB/includes/bbcode.php') diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php index 45c6774d6c..c4e799a0d5 100644 --- a/phpBB/includes/bbcode.php +++ b/phpBB/includes/bbcode.php @@ -28,6 +28,7 @@ define("BBCODE_UID_LEN", 10); */ function bbencode_second_pass($text, $uid) { + global $lang; //$uid_tag_length = strpos($text, ']') + 1; //$uid = substr($text, 5, BBCODE_UID_LEN); @@ -60,8 +61,8 @@ function bbencode_second_pass($text, $uid) $text = preg_replace("/\[list=([a1]):$uid\]/si", '
    ', $text); // [QUOTE] and [/QUOTE] for posting replies with quote, or just for quoting stuff. - $text = str_replace("[quote:$uid]", '
    Quote:
    ', $text); - $text = str_replace("[/quote:$uid]", '

    ', $text); + $text = str_replace("[quote:$uid]", '
    ' . $lang['Quote'] . '
    ', $text); + $text = str_replace("[/quote:$uid]", '

    ', $text); // [b] and [/b] for bolding text. $text = str_replace("[b:$uid]", '', $text); @@ -89,15 +90,15 @@ function bbencode_second_pass($text, $uid) // [url=xxxx://www.phpbb.com]phpBB[/url] code.. $patterns[2] = "#\[url=([a-z]+?://){1}(.*?)\](.*?)\[/url\]#si"; - $replacements[2] = '\3'; + $replacements[2] = '\3'; // [url=www.phpbb.com]phpBB[/url] code.. (no xxxx:// prefix). $patterns[3] = "#\[url=(.*?)\](.*?)\[/url\]#si"; - $replacements[3] = '\2'; + $replacements[3] = '\2'; // [email]user@domain.tld[/email] code.. $patterns[4] = "#\[email\](.*?)\[/email\]#si"; - $replacements[4] = '\1'; + $replacements[4] = '\1'; $text = preg_replace($patterns, $replacements, $text); @@ -351,11 +352,13 @@ function bbencode_first_pass_pda($text, $uid, $open_tag, $close_tag, $close_tag_ */ function bbencode_second_pass_code($text, $uid) { - // If HTML is turned on we undo any HTML special chars that were created by the viewtopic code. -// $text = undo_htmlspecialchars($text); + global $lang; - $code_start_html = '
    Code:
    ';
    -	$code_end_html =  '

    '; + $html_entities_match = array("#<#", "#>#"); + $html_entities_replace = array("<", ">"); + + $code_start_html = '
    ' . $lang['Code'] . '
    ';
    +	$code_end_html =  '

    '; // First, do all the 1st-level matches. These need an htmlspecialchars() run, // so they have to be handled differently. @@ -366,7 +369,7 @@ function bbencode_second_pass_code($text, $uid) $before_replace = $matches[1][$i]; $after_replace = $matches[1][$i]; - $after_replace = htmlspecialchars($after_replace); + $after_replace = preg_replace($html_entities_match, $html_entities_replace, $after_replace); $str_to_match = "[code:1:$uid]" . $before_replace . "[/code:1:$uid]"; -- cgit v1.2.1