1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 03:10:50 +02:00

Allow underscore in bbcode names

This commit is contained in:
e107steved
2007-07-31 20:10:55 +00:00
parent 89f916d870
commit b6a8d5b5fa

View File

@@ -12,8 +12,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_handlers/bbcode_handler.php,v $ | $Source: /cvs_backup/e107_0.8/e107_handlers/bbcode_handler.php,v $
| $Revision: 1.9 $ | $Revision: 1.10 $
| $Date: 2007-05-01 19:48:22 $ | $Date: 2007-07-31 20:10:44 $
| $Author: e107steved $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -82,7 +82,7 @@ class e_bbcode
{ {
$strip_array = explode(',',$bb_strip); $strip_array = explode(',',$bb_strip);
} }
$pattern = '#^\[(/?)([A-Za-z]+)(\d*)([=:]?)(.*?)]$#i'; // Pattern to split up bbcodes $pattern = '#^\[(/?)([A-Za-z_]+)(\d*)([=:]?)(.*?)]$#i'; // Pattern to split up bbcodes
// $matches[0] - same as the input text // $matches[0] - same as the input text
// $matches[1] - '/' for a closing tag. Otherwise empty string // $matches[1] - '/' for a closing tag. Otherwise empty string
// $matches[2] - the bbcode word // $matches[2] - the bbcode word