diff options
Diffstat (limited to 'lib/hook.php')
-rw-r--r-- | lib/hook.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/hook.php b/lib/hook.php index e30aefb5e18..1f450e7dcac 100644 --- a/lib/hook.php +++ b/lib/hook.php @@ -33,8 +33,9 @@ class OC_Hook{ // Connect the hook handler to the requested emitter self::$registered[$signalclass][$signalname][] = array( - "class" => $slotclass, - "name" => $slotname ); + "class" => $slotclass, + "name" => $slotname + ); // No chance for failure ;-) return true; |