summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Parse/Default/Superscript.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pear/Text/Wiki/Parse/Default/Superscript.php')
-rwxr-xr-x[-rw-r--r--]includes/pear/Text/Wiki/Parse/Default/Superscript.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/pear/Text/Wiki/Parse/Default/Superscript.php b/includes/pear/Text/Wiki/Parse/Default/Superscript.php
index e63c190..de80084 100644..100755
--- a/includes/pear/Text/Wiki/Parse/Default/Superscript.php
+++ b/includes/pear/Text/Wiki/Parse/Default/Superscript.php
@@ -12,7 +12,7 @@
*
* @license LGPL
*
-* @version $Id: Superscript.php 180591 2005-02-23 17:38:29Z pmjones $
+* @version $Id$
*
*/
@@ -28,7 +28,7 @@
*
*/
-class Text_Wiki_Parse_Superscript extends Text_Wiki_Parse {
+class Text_Wiki_Parse_Default_Superscript extends Text_Wiki_Parse {
/**
@@ -66,14 +66,14 @@ class Text_Wiki_Parse_Superscript extends Text_Wiki_Parse {
function process(&$matches)
{
$start = $this->wiki->addToken(
- $this->rule, array('type' => 'start')
+ $this->rule, array("type" => "start")
);
$end = $this->wiki->addToken(
- $this->rule, array('type' => 'end')
+ $this->rule, array("type" => "end")
);
return $start . $matches[1] . $end;
}
}
-?> \ No newline at end of file
+?>