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 /it_debug.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 'it_debug.class')
-rw-r--r-- | it_debug.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_debug.class b/it_debug.class index b53a192..d2aeb04 100644 --- a/it_debug.class +++ b/it_debug.class @@ -62,7 +62,7 @@ static function srcline($stackoffs = 0) $file = $stack[1 + $stackoffs]['file']; if (!isset($GLOBALS['it_debug::dump source'][$file])) - $GLOBALS['it_debug::dump source'][$file] = @file($file); + $GLOBALS['it_debug::dump source'][$file] = @it::file($file); return $GLOBALS['it_debug::dump source'][$file][$line-1]; } |