diff options
author | till <till@php.net> | 2009-03-09 21:43:36 +0000 |
---|---|---|
committer | till <till@php.net> | 2009-03-09 21:43:36 +0000 |
commit | 123300749c7ae0445c121586f97f95202e3c572f (patch) | |
tree | b95a7f8edb57c3aa6e5847b35ad390fc22cbe828 /program | |
parent | 378ba1d1903d644893cac79a08750a8bfeba8f43 (diff) |
* autoload is only invoked when a class is not found - no need for include_once
Diffstat (limited to 'program')
-rwxr-xr-x | program/include/iniset.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/iniset.php b/program/include/iniset.php index 68e2aa9bc..7bcca4e2b 100755 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -95,7 +95,7 @@ function __autoload($classname) ), $classname ); - include_once $filename. '.php'; + include $filename. '.php'; } /** |