diff options
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Xhtml/Strong.php')
| -rwxr-xr-x[-rw-r--r--] | includes/pear/Text/Wiki/Render/Xhtml/Strong.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/includes/pear/Text/Wiki/Render/Xhtml/Strong.php b/includes/pear/Text/Wiki/Render/Xhtml/Strong.php index da816a7..c479529 100644..100755 --- a/includes/pear/Text/Wiki/Render/Xhtml/Strong.php +++ b/includes/pear/Text/Wiki/Render/Xhtml/Strong.php @@ -9,7 +9,7 @@ * @package Text_Wiki * @author Paul M. Jones <pmjones@php.net> * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 - * @version CVS: $Id: Strong.php 191862 2005-07-30 08:03:29Z toggg $ + * @version CVS: $Id$ * @link http://pear.php.net/package/Text_Wiki */ @@ -27,7 +27,7 @@ class Text_Wiki_Render_Xhtml_Strong extends Text_Wiki_Render { var $conf = array( - 'css' => null + "css" => null ); /** @@ -45,13 +45,13 @@ class Text_Wiki_Render_Xhtml_Strong extends Text_Wiki_Render { function token($options) { - if ($options['type'] == 'start') { - $css = $this->formatConf(' class="%s"', 'css'); + if ($options["type"] == "start") { + $css = $this->formatConf(' class="%s"', "css"); return "<strong$css>"; } - if ($options['type'] == 'end') { - return '</strong>'; + if ($options["type"] == "end") { + return "</strong>"; } } } |
