Skip to content

Commit

Permalink
Require correct Markdown parser
Browse files Browse the repository at this point in the history
  • Loading branch information
klaftertief committed Jan 31, 2011
1 parent ea88f34 commit 28fb522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text-formatters/formatter.markdown_with_purifier.php
Expand Up @@ -21,7 +21,7 @@ public function about(){
public function run($string){
if(!self::$_parser){
if (!class_exists('Markdown_Parser'))
include_once(EXTENSIONS . '/markdown/lib/php-markdown-1.0.1n/markdown.php');
include_once(EXTENSIONS . '/markdown/lib/php-markdown-extra-1.2.4/markdown.php');
self::$_parser = new Markdown_Parser();
}

Expand Down

0 comments on commit 28fb522

Please sign in to comment.