Changeset 13492 for trunk/plugins
- Timestamp:
- 12/22/09 01:01:21 (2 years ago)
- File:
-
- 1 edited
-
trunk/plugins/firephp/fb.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/firephp/fb.php
r8795 r13492 57 57 function fb() 58 58 { 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; 63 73 } 64 74
Note: See TracChangeset
for help on using the changeset viewer.