diff options
| author | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-03-09 21:40:01 +0000 |
|---|---|---|
| committer | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-03-09 21:40:01 +0000 |
| commit | b6e2f5153a2705a893dfc47b15826384a8b78a9c (patch) | |
| tree | e281206c217177fa7d8dced660f0a10646f52577 /roundcubemail/program | |
| parent | 3c24b62a7882b593d6d30d3e1221a011b1fe6e3f (diff) | |
* autoload is only invoked when a class is not found - no need for include_once
git-svn-id: https://svn.roundcube.net/trunk@2345 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rwxr-xr-x | roundcubemail/program/include/iniset.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/iniset.php b/roundcubemail/program/include/iniset.php index 4cdf173be..234f9ebcb 100755 --- a/roundcubemail/program/include/iniset.php +++ b/roundcubemail/program/include/iniset.php @@ -95,7 +95,7 @@ function __autoload($classname) ), $classname ); - include_once $filename. '.php'; + include $filename. '.php'; } /** |
