summaryrefslogtreecommitdiff
path: root/framework/core.php
diff options
context:
space:
mode:
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;