1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-06 04:31:38 +02:00

A little cleanup

git-svn-id: file:///svn/phpbb/trunk@8480 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Marek A. R
2008-03-29 14:11:49 +00:00
parent b935389427
commit 45c97a40d2
3 changed files with 55 additions and 50 deletions

View File

@@ -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();
}