diff options
author | Florian Pritz <bluewind@xinu.at> | 2011-09-08 18:08:09 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2011-09-08 18:08:09 +0200 |
commit | 363379f815b51a4930395cfd701fd0b40e0d675a (patch) | |
tree | 1abe35f74d0889569836e46a3ac5acdb58c9b572 | |
parent | a32812fd2d73c8a9663af76583be330fd6c112cc (diff) |
fix markdown.pl path
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | application/models/file_mod.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/models/file_mod.php b/application/models/file_mod.php index dcf33f9d4..c45dd85d5 100644 --- a/application/models/file_mod.php +++ b/application/models/file_mod.php @@ -287,7 +287,7 @@ class File_mod extends CI_Model { ob_start(); if ($mode == "rmd") { echo '<td class="markdownrender">'."\n"; - passthru('/usr/bin/perl /usr/bin/vendor_perl/vendor/Markdown.pl '.escapeshellarg($file)); + passthru('/usr/bin/perl /usr/bin/vendor_perl/Markdown.pl '.escapeshellarg($file)); } elseif ($mode == "ascii") { echo '<td class="code"><pre class="text">'."\n"; passthru('/usr/bin/perl '.FCPATH.'scripts/ansi2html '.escapeshellarg($file)); |