1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/10329] Add phpbb_ prefix to new pcre_utf8_support() function.

Introduced by 6b4d0a2542.

PHPBB3-10329
This commit is contained in:
Andreas Fischer
2011-08-21 14:33:40 +02:00
parent 0b9fe01cce
commit ac11806bf4
4 changed files with 6 additions and 6 deletions

View File

@@ -317,7 +317,7 @@ class acp_bbcodes
$bbcode_tpl = trim($bbcode_tpl);
$utf8 = strpos($bbcode_match, 'INTTEXT') !== false;
$utf8_pcre_properties = pcre_utf8_support();
$utf8_pcre_properties = phpbb_pcre_utf8_support();
$fp_match = preg_quote($bbcode_match, '!');
$fp_replace = preg_replace('#^\[(.*?)\]#', '[$1:$uid]', $bbcode_match);