From ca012157e0cbdab743a94ece0a77c6c3921070ef Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 16 Aug 2012 16:24:14 +0200 Subject: remove 'class="no"' from highlit html No need to repeat that for every line. Signed-off-by: Florian Pritz --- application/controllers/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'application/controllers/file.php') diff --git a/application/controllers/file.php b/application/controllers/file.php index 3b9a8f9b4..a9e4406bc 100644 --- a/application/controllers/file.php +++ b/application/controllers/file.php @@ -165,7 +165,7 @@ class File extends CI_Controller { } else { echo '
';
 				// generate line numbers (links)
-				passthru('perl -ne \'print "$.\n"\' '.escapeshellarg($file));
+				passthru('perl -ne \'print "$.\n"\' '.escapeshellarg($file));
 				echo '
'."\n"; passthru('pygmentize -F codetagify -O encoding=utf-8 -l '.escapeshellarg($mode).' -f html '.escapeshellarg($file)); } -- cgit v1.2.3-24-g4f1b