diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-09-18 16:34:41 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-09-18 17:13:47 +0200 |
commit | 7c5e3890670948641dc715e05562aa420f846ff3 (patch) | |
tree | cd2528f0352a368138b4888d84d07c50684f083c | |
parent | 6e980d419c0c93b606858b1a907818c5aa386524 (diff) | |
download | nextcloud-server-7c5e3890670948641dc715e05562aa420f846ff3.tar.gz nextcloud-server-7c5e3890670948641dc715e05562aa420f846ff3.zip |
deleteUser function must be static
-rw-r--r-- | apps/calendar/lib/hooks.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/lib/hooks.php b/apps/calendar/lib/hooks.php index 5c446102b22..330d938cf79 100644 --- a/apps/calendar/lib/hooks.php +++ b/apps/calendar/lib/hooks.php @@ -29,7 +29,7 @@ class OC_Calendar_Hooks{ * @param paramters parameters from postDeleteUser-Hook * @return array */ - public function deleteUser($parameters) { + public static function deleteUser($parameters) { $calendars = OC_Calendar_Calendar::allCalendars($parameters['uid']); foreach($calendars as $calendar) { |