diff options
author | Urban Müller | 2018-06-27 15:13:03 +0200 |
---|---|---|
committer | Urban Müller | 2018-06-27 15:13:03 +0200 |
commit | 84fe0c2eaa7deb0681cfc8746434044a2fae53c6 (patch) | |
tree | f42b265a85d66262da30be905fa0d3e7d310a6e1 /itjs.class | |
parent | 3fc0d00f21b44d44ee1cf0513235e1b51340a290 (diff) | |
download | itools-84fe0c2eaa7deb0681cfc8746434044a2fae53c6.tar.gz itools-84fe0c2eaa7deb0681cfc8746434044a2fae53c6.tar.bz2 itools-84fe0c2eaa7deb0681cfc8746434044a2fae53c6.zip |
reapply "use safer it:: variants of file funcs", was not the culprit in jussi downtimes
This reverts commit 99b7fc8dc08da090bb7f00c2882e1daeec4434ba.
Diffstat (limited to 'itjs.class')
-rw-r--r-- | itjs.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -159,7 +159,7 @@ static function filecontents($filenames) list($filename, $paramstr) = explode("?", $filename); if ($paramstr) parse_str($paramstr, $_GET); - $result .= it::replace(array('^1$' => ""), it::match('\.(js|css|htc)$', $filename) ? include_once($filename) : (file_exists($filename) ? file_get_contents($filename) : it_url::get($filename)), array('utf8' => false)); + $result .= it::replace(array('^1$' => ""), it::match('\.(js|css|htc)$', $filename) ? include_once($filename) : (file_exists($filename) ? it::file_get_contents($filename) : it_url::get($filename)), array('utf8' => false)); $_GET = $origget; } $result .= ob_get_clean(); |