diff options
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Xhtml/Titlebar.php')
| -rwxr-xr-x[-rw-r--r--] | includes/pear/Text/Wiki/Render/Xhtml/Titlebar.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/includes/pear/Text/Wiki/Render/Xhtml/Titlebar.php b/includes/pear/Text/Wiki/Render/Xhtml/Titlebar.php index d6e24a8..31c1b96 100644..100755 --- a/includes/pear/Text/Wiki/Render/Xhtml/Titlebar.php +++ b/includes/pear/Text/Wiki/Render/Xhtml/Titlebar.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: Titlebar.php 191862 2005-07-30 08:03:29Z toggg $ + * @version CVS: $Id$ * @link http://pear.php.net/package/Text_Wiki */ @@ -26,7 +26,7 @@ class Text_Wiki_Render_Xhtml_Titlebar extends Text_Wiki_Render { var $conf = array( - 'css' => 'titlebar' + "css" => "titlebar" ); /** @@ -44,13 +44,13 @@ class Text_Wiki_Render_Xhtml_Titlebar 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 "<div$css>"; } - if ($options['type'] == 'end') { - return '</div>'; + if ($options["type"] == "end") { + return "</div>"; } } } |
