summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxue <>2006-08-05 21:22:58 +0000
committerxue <>2006-08-05 21:22:58 +0000
commit57aa404baf18daa8d1e57144e589e6b01d2daa75 (patch)
tree4b7aa02acf05398f1d1bf34da040dadb7d23448f
parent1f5f5acf9011763a8b72748219f8275db527387e (diff)
some minor fixes.3.0.3
-rw-r--r--buildscripts/classtree/build.php4
-rw-r--r--framework/PradoBase.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/buildscripts/classtree/build.php b/buildscripts/classtree/build.php
index d7f74828..c0b5ba35 100644
--- a/buildscripts/classtree/build.php
+++ b/buildscripts/classtree/build.php
@@ -6,9 +6,9 @@ require_once($frameworkPath.'/prado.php');
require_once($basePath.'/DWExtension.php');
$exclusions=array(
- 'prado.php',
+// 'prado.php',
'pradolite.php',
- 'PradoBase.php',
+// 'PradoBase.php',
'clientscripts.php',
'.svn',
'/I18N/core',
diff --git a/framework/PradoBase.php b/framework/PradoBase.php
index 6ce6ad0d..7c054bac 100644
--- a/framework/PradoBase.php
+++ b/framework/PradoBase.php
@@ -516,7 +516,7 @@ class PradoBase
*/
public static function varDump($var,$depth=10,$highlight=false)
{
- require_once(PRADO_DIR.'/Util/TVarDumper.php');
+ Prado::using('System.Util.TVarDumper');
return TVarDumper::dump($var,$depth,$highlight);
}