summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Render/Xhtml/Preformatted.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Xhtml/Preformatted.php')
-rwxr-xr-x[-rw-r--r--]includes/pear/Text/Wiki/Render/Xhtml/Preformatted.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/pear/Text/Wiki/Render/Xhtml/Preformatted.php b/includes/pear/Text/Wiki/Render/Xhtml/Preformatted.php
index a68ce76..4bd8783 100644..100755
--- a/includes/pear/Text/Wiki/Render/Xhtml/Preformatted.php
+++ b/includes/pear/Text/Wiki/Render/Xhtml/Preformatted.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: Preformatted.php 229275 2007-02-07 13:40:44Z mic $
+ * @version CVS: $Id$
* @link http://pear.php.net/package/Text_Wiki
*/
@@ -40,8 +40,8 @@ class Text_Wiki_Render_Xhtml_Preformatted extends Text_Wiki_Render {
function token($options)
{
- $text = $this->textEncode($options['text']);
- return '<pre>'.$text.'</pre>';
+ $text = $this->textEncode($options["text"]);
+ return "<pre>".$text."</pre>";
}
}
?>