Ignore:
Timestamp:
08/15/10 18:45:12 (22 months ago)
Author:
vain
Message:
  • several changes to copyright, router, bootstrap, frontcontroller and various other files
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/debug/xdebug.core.php

    r4493 r4578  
    2424    * 
    2525    * @license    GNU/GPL v2 or (at your option) any later version, see "/doc/LICENSE". 
    26     * 
    2726    * @author     Jens-André Koch <vain@clansuite.com> 
    2827    * @copyright  Jens-André Koch (2005 - onwards) 
    29     * 
    3028    * @link       http://www.clansuite.com 
    31     * @link       http://gna.org/projects/clansuite 
    3229    * 
    3330    * @version    SVN: $Id$ 
     
    108105            #xdebug_get_code_coverage(); 
    109106 
    110              # stop tracing and display infos 
     107            # stop tracing and display infos 
    111108            register_shutdown_function('clansuite_xdebug::shutdown'); 
    112109        } 
     
    198195     * @param mixed $variable The variable to debug display. 
    199196     */ 
    200     public static function xd_varDump($var = null) 
    201     { 
    202         if($var === null) 
    203         { 
    204             throw new Clansuite_Exception('clansuite_xdebug::xd_varDump() expects the variable you want to display as parameter.'); 
    205         } 
    206  
     197    public static function xd_varDump($var) 
     198    { 
    207199        echo xdebug_var_dump($var); 
    208200    } 
Note: See TracChangeset for help on using the changeset viewer.