diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2010-02-21 11:33:29 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2010-02-21 11:33:29 +0000 |
commit | 22621e043963dca078580eaf61b45c5022ca79e1 (patch) | |
tree | eb18fb876a5afc0745967f29aa83c923ab524b6a /phpBB/includes/bbcode.php | |
parent | 6b99b85c8f2f366d8e5e3e2855d77b0832d141d7 (diff) | |
download | forums-22621e043963dca078580eaf61b45c5022ca79e1.tar forums-22621e043963dca078580eaf61b45c5022ca79e1.tar.gz forums-22621e043963dca078580eaf61b45c5022ca79e1.tar.bz2 forums-22621e043963dca078580eaf61b45c5022ca79e1.tar.xz forums-22621e043963dca078580eaf61b45c5022ca79e1.zip |
Enter stage left: the INTTEXT token
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10516 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/bbcode.php')
-rw-r--r-- | phpBB/includes/bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php index e41053d936..d77bb3c4a7 100644 --- a/phpBB/includes/bbcode.php +++ b/phpBB/includes/bbcode.php @@ -360,7 +360,7 @@ class bbcode // In order to use templates with custom bbcodes we need // to replace all {VARS} to corresponding backreferences // Note that backreferences are numbered from bbcode_match - if (preg_match_all('/\{(URL|LOCAL_URL|EMAIL|TEXT|SIMPLETEXT|IDENTIFIER|COLOR|NUMBER)[0-9]*\}/', $rowset[$bbcode_id]['bbcode_match'], $m)) + if (preg_match_all('/\{(URL|LOCAL_URL|EMAIL|TEXT|SIMPLETEXT|INTTEXT|IDENTIFIER|COLOR|NUMBER)[0-9]*\}/', $rowset[$bbcode_id]['bbcode_match'], $m)) { foreach ($m[0] as $i => $tok) { |