summaryrefslogtreecommitdiff
path: root/framework/core.php
diff options
context:
space:
mode:
authorxue <>2005-11-13 13:29:44 +0000
committerxue <>2005-11-13 13:29:44 +0000
commit5c53973f213b21081d45df39bf0fc89dec9ecad2 (patch)
treed9a06ddc145866000b74fa74f3418bfaf8db12d3 /framework/core.php
parent4c89bb76f70a7d18733f3294753c4940d831c485 (diff)
modified how class files are included and errors are handled.
Diffstat (limited to 'framework/core.php')
-rw-r--r--framework/core.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/core.php b/framework/core.php
index dd79914c..66556f0a 100644
--- a/framework/core.php
+++ b/framework/core.php
@@ -551,7 +551,7 @@ class PradoBase
$className=$type;
if(!class_exists($className,false))
{
- require_once($className.self::CLASS_FILE_EXT);
+ include_once($className.self::CLASS_FILE_EXT);
}
if(class_exists($className,false))
return new $className;