diff options
author | Urban Müller | 2021-02-10 18:00:57 +0100 |
---|---|---|
committer | Urban Müller | 2021-02-10 18:00:57 +0100 |
commit | 47730d966bdd1d14e03fdba6f957cb9fb401b120 (patch) | |
tree | e82cc0fbefb51602228fd79fafd26e57fd05bec6 | |
parent | a37310818526cdb47e144921b9efd7e0675710f8 (diff) | |
download | itools-47730d966bdd1d14e03fdba6f957cb9fb401b120.tar.gz itools-47730d966bdd1d14e03fdba6f957cb9fb401b120.tar.bz2 itools-47730d966bdd1d14e03fdba6f957cb9fb401b120.zip |
optionally preserve line numbers
-rw-r--r-- | itjs.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -85,4 +85,4 @@ else if ($files && !it::match('\.html$', $lastfile)) if (strpos($data, "<?php") !== false) it::error("sending php source?!"); -echo itjs::strip($data); +echo $_GET['nostrip'] ? $data : itjs::strip($data); |