summaryrefslogtreecommitdiff
path: root/it_html.class
diff options
context:
space:
mode:
authorUrban Müller2018-06-21 16:12:20 +0200
committerUrban Müller2018-06-21 16:12:20 +0200
commit05e7ceefa1f0a29c665381b54ac882f260ae6c22 (patch)
treed9107f13ce76a21d77e8be2670f0b2e8d96f19e7 /it_html.class
parentc8319c784267f81e2884a076365b8ca36f4ce0b2 (diff)
downloaditools-05e7ceefa1f0a29c665381b54ac882f260ae6c22.tar.gz
itools-05e7ceefa1f0a29c665381b54ac882f260ae6c22.tar.bz2
itools-05e7ceefa1f0a29c665381b54ac882f260ae6c22.zip
use safer it:: variants of file funcs
Diffstat (limited to 'it_html.class')
-rw-r--r--it_html.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it_html.class b/it_html.class
index f433e14..bca1689 100644
--- a/it_html.class
+++ b/it_html.class
@@ -597,7 +597,7 @@ function _itjs($files, $mode)
$jsfile = "";
foreach ($filenames as $file)
- $jsfile .= @file_get_contents($file);
+ $jsfile .= @it::file_get_contents($file);
$result .= itjs::strip($jsfile);
}