diff options
Diffstat (limited to 'phpBB/includes/bbcode/bbcode_parser.php')
-rw-r--r-- | phpBB/includes/bbcode/bbcode_parser.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/bbcode/bbcode_parser.php b/phpBB/includes/bbcode/bbcode_parser.php index f76b3ade39..81151a2945 100644 --- a/phpBB/includes/bbcode/bbcode_parser.php +++ b/phpBB/includes/bbcode/bbcode_parser.php @@ -2,7 +2,7 @@ /** * * @package phpBB3 -* @version +* @version $Id$ * @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @@ -37,7 +37,7 @@ class phpbb_bbcode_parser extends phpbb_bbcode_parser_base 'parents' => array(true), ), // The exact I BBcode from phpBB - 'i' => array( + 'i' => array( 'replace' => '<span style="font-style: italic">', 'close' => '</span>', 'attributes' => array(), @@ -207,7 +207,7 @@ class phpbb_bbcode_parser extends phpbb_bbcode_parser_base ':(' => '<img src="http://area51.phpbb.com/phpBB/images/smilies/icon_e_sad.gif" />', ); - $this->text_callback = 'strtoupper'; +// $this->text_callback = 'strtoupper'; parent::__construct(); } |