Changeset 1329 for branches/3.0

Show
Ignore:
Timestamp:
08/05/2006 04:22:58 PM (2 years ago)
Author:
xue
Message:

some minor fixes.

Location:
branches/3.0
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/3.0/buildscripts/classtree/build.php

    r1215 r1329  
    77 
    88$exclusions=array( 
    9         'prado.php', 
     9//      'prado.php', 
    1010        'pradolite.php', 
    11         'PradoBase.php', 
     11//      'PradoBase.php', 
    1212        'clientscripts.php', 
    1313        '.svn', 
  • branches/3.0/framework/PradoBase.php

    r1317 r1329  
    517517        public static function varDump($var,$depth=10,$highlight=false) 
    518518        { 
    519                 require_once(PRADO_DIR.'/Util/TVarDumper.php'); 
     519                Prado::using('System.Util.TVarDumper'); 
    520520                return TVarDumper::dump($var,$depth,$highlight); 
    521521        }