diff --git a/library/think/app.php b/library/think/app.php index da534d9d..85dd7842 100644 --- a/library/think/app.php +++ b/library/think/app.php @@ -43,7 +43,7 @@ class App foreach ($config['extra_file_list'] as $file) { $file = strpos($file, '.') ? $file : APP_PATH . $file . EXT; if (is_file($file)) { - include $file; + include_once $file; } } }