summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/parser/handler.php1
-rw-r--r--inc/parser/parser.php3
2 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/handler.php b/inc/parser/handler.php
index b1334d946..1d7af1864 100644
--- a/inc/parser/handler.php
+++ b/inc/parser/handler.php
@@ -426,6 +426,7 @@ class Doku_Handler {
function rss($match, $state, $pos) {
$link = preg_replace(array('/^\{\{rss>/','/\}\}$/'),'',$match);
$this->_addCall('rss',array($link),$pos);
+ return TRUE;
}
function externallink($match, $state, $pos) {
diff --git a/inc/parser/parser.php b/inc/parser/parser.php
index 7e60628fe..52d957b09 100644
--- a/inc/parser/parser.php
+++ b/inc/parser/parser.php
@@ -811,8 +811,7 @@ function Doku_Parser_Substition() {
'acronym','smiley','wordblock','entity','camelcaselink',
'internallink','media','externallink','linebreak','emaillink',
'windowssharelink','filelink','notoc','multiplyentity',
- 'quotes','rss'
-
+ 'quotes','rss',
);
return $modes;
}