wrap hooks into a try, catch to prevent a faulty app from crashing the request

This commit is contained in:
Robin Appelman 2012-12-16 20:29:36 +01:00
parent 0c87f666ad
commit 4301cd7f61
1 changed files with 5 additions and 1 deletions

View File

@ -59,7 +59,11 @@ class OC_Hook{
// Call all slots
foreach( self::$registered[$signalclass][$signalname] as $i ) {
call_user_func( array( $i["class"], $i["name"] ), $params );
try {
call_user_func( array( $i["class"], $i["name"] ), $params );
} catch (Exception $e){
OC_Log::write('hook', 'error while running hook (' . $i["class"] . '::' . $i["name"] . '): '.$e->getMessage(), OC_Log::ERROR);
}
}
// return true