Deprecated
Table of Contents
core/class/log.class.php |
core/com/shell.com.php |
log.class.php
Line | Element | Reason |
---|---|---|
255 | log::get() | v4.4 => removed in v4.6 (use log::getDelta() instead) Note that log::get($_log, $_begin, $_nbLines) is equivalent to: $path = (!file_exists($_log) || !is_file($_log)) ? self::getPathToLog($_log) : $_log; if (!file_exists($path)) { return false; } $delta = self::getDelta($_log, $_begin, '', false, false, 0, $_nbLines); $arr = explode("\n", $delta['logText']); unset($arr[count($arr) - 1]); $res = array_reverse($arr); |
shell.com.php
Line | Element | Reason |
---|---|---|
114 | com_shell::commandExist() | Replaced by com_shell::commandExists |