diff options
author | neoraider <devnull@localhost> | 2006-05-27 19:14:03 +0200 |
---|---|---|
committer | neoraider <devnull@localhost> | 2006-05-27 19:14:03 +0200 |
commit | 0201d0d0373c514f273ca6f1a7503eef2dbeb87c (patch) | |
tree | ba0cd8094c7e30b1fcbb34ebb185888899c64ba3 /code | |
parent | 5baebf61ac2f8d0ca060373a3709fc6698afd70b (diff) | |
download | bbcode-0201d0d0373c514f273ca6f1a7503eef2dbeb87c.tar bbcode-0201d0d0373c514f273ca6f1a7503eef2dbeb87c.zip |
Kleine ?nderung am BBCode-Parser.
Diffstat (limited to 'code')
-rw-r--r-- | code/bbcode.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/bbcode.inc.php b/code/bbcode.inc.php index b5e0b05..d1cbe0b 100644 --- a/code/bbcode.inc.php +++ b/code/bbcode.inc.php @@ -74,9 +74,9 @@ if($found) continue; - if(!preg_match('(^([^\[]*)\[(.*)$)s', $data, $match)) break; + if(!preg_match('(^([^\[]*\[)(.*)$)s', $data, $match)) break; - $out .= $match[1] . '['; + $out .= $match[1]; $data = $match[2]; } |