summaryrefslogtreecommitdiff
path: root/program/include/iniset.php
diff options
context:
space:
mode:
authortill <till@php.net>2009-03-09 21:40:01 +0000
committertill <till@php.net>2009-03-09 21:40:01 +0000
commitc762c07ce9180f4a6a324c46f0ec5e47cd91fd68 (patch)
treed557f2e75fa3a9771fc06152ecd094d6abfa1a97 /program/include/iniset.php
parent5526acb151e2946a42b94490980fc2f3c6c5a5b8 (diff)
* autoload is only invoked when a class is not found - no need for include_once
Diffstat (limited to 'program/include/iniset.php')
-rwxr-xr-xprogram/include/iniset.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/iniset.php b/program/include/iniset.php
index 4cdf173be..234f9ebcb 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';
}
/**