提交 a59a2da4 编写于 作者: W wwccss

* change skipfiles to skipFiles.

上级 31bc99a4
...@@ -25,7 +25,7 @@ define('DS', DIRECTORY_SEPARATOR); ...@@ -25,7 +25,7 @@ define('DS', DIRECTORY_SEPARATOR);
/* Config. */ /* Config. */
$config = new stdclass(); $config = new stdclass();
$config->timezone = 'Asia/Shanghai'; $config->timezone = 'Asia/Shanghai';
$config->skipfiles = 'exe,dll,gif,jpg,png,bmp'; $config->skipFiles = 'exe,dll,gif,jpg,png,bmp';
/* Ansi control codes. */ /* Ansi control codes. */
$config->ansi = new stdclass(); $config->ansi = new stdclass();
...@@ -488,7 +488,7 @@ class zentaotest ...@@ -488,7 +488,7 @@ class zentaotest
{ {
/* Get the script interpreter. */ /* Get the script interpreter. */
$interpreter = strtolower(pathinfo($script, PATHINFO_EXTENSION)); $interpreter = strtolower(pathinfo($script, PATHINFO_EXTENSION));
if($interpreter and strpos($this->config->skipfiles, $interpreter) !== false) continue; if($interpreter and strpos($this->config->skipFiles, $interpreter) !== false) continue;
$this->scripts[] = realpath($script); $this->scripts[] = realpath($script);
if($interpreter) $this->interpreters[$interpreter] = $interpreter; if($interpreter) $this->interpreters[$interpreter] = $interpreter;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册