Florian Trudel 10 роки тому
батько
коміт
484c62e5e4
1 змінених файлів з 2 додано та 2 видалено
  1. 2 2
      system/plugins/markdown.php

+ 2 - 2
system/plugins/markdown.php

@@ -51,8 +51,8 @@ class YellowMarkdownParser extends MarkdownExtraParser
 		$text = preg_replace("/@pageRead/i", $this->page->get("pageRead"), $text);
 		$text = preg_replace("/@pageEdit/i", $this->page->get("pageEdit"), $text);
 		$text = preg_replace("/@pageError/i", $this->page->get("pageError"), $text);
-		$text = parent::transform( $text );
-		$text = preg_replace( "/".$this->page->base.$this->page->location."@domain/i", "", $text );
+		$text = parent::transform($text);
+		$text = preg_replace("/".$this->page->base.$this->page->location."@domain/i", "", $text);
 		return $text;
 	}