diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-04-13 17:26:34 -0400 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-04-13 17:26:34 -0400 |
commit | ea3499a712d87281bd749ed5c384430401f80f22 (patch) | |
tree | 9448f9132bb3aecb7285fbff12beca553ce98372 /apps/calendar | |
parent | 1e0364baa85b063debb2c1248585d97cd61a8a1f (diff) | |
download | nextcloud-server-ea3499a712d87281bd749ed5c384430401f80f22.tar.gz nextcloud-server-ea3499a712d87281bd749ed5c384430401f80f22.zip |
fix class name
Diffstat (limited to 'apps/calendar')
-rw-r--r-- | apps/calendar/lib/share.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/lib/share.php b/apps/calendar/lib/share.php index 0c656f2d6ee..16c10589671 100644 --- a/apps/calendar/lib/share.php +++ b/apps/calendar/lib/share.php @@ -122,7 +122,7 @@ class OC_Calendar_Share{ private static function generate_token($id, $type){ $uniqid = uniqid(); if($type == self::CALENDAR){ - $events = OC_Calendar_Objects::all($id); + $events = OC_Calendar_Object::all($id); $string = ''; foreach($events as $event){ $string .= $event['calendardata']; |