HomeHelpTrac

Changeset 13492 for trunk/plugins


Ignore:
Timestamp:
12/22/09 01:01:21 (2 years ago)
Author:
Alexander Trofimov
Message:

Ticket #1633

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/plugins/firephp/fb.php

    r8795 r13492  
    5757function fb() 
    5858{ 
    59   $instance = FirePHP::getInstance(true); 
    60    
    61   $args = func_get_args(); 
    62   return call_user_func_array(array($instance,'fb'),$args); 
     59    $mixedRet = false; 
     60 
     61    try { 
     62 
     63        $instance = FirePHP::getInstance(true); 
     64   
     65        $args = func_get_args(); 
     66        $mixedRet = call_user_func_array(array($instance,'fb'),$args); 
     67 
     68    } catch (Exception $e) { 
     69        //echo 'Caught exception: ',  $e->getMessage(), "\n"; 
     70    } 
     71 
     72    return $mixedRet; 
    6373} 
    6474 
Note: See TracChangeset for help on using the changeset viewer.