aboutsummaryrefslogtreecommitdiffstats
path: root/apps/calendar
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-04-13 17:26:34 -0400
committerGeorg Ehrke <dev@georgswebsite.de>2012-04-13 17:26:34 -0400
commitea3499a712d87281bd749ed5c384430401f80f22 (patch)
tree9448f9132bb3aecb7285fbff12beca553ce98372 /apps/calendar
parent1e0364baa85b063debb2c1248585d97cd61a8a1f (diff)
downloadnextcloud-server-ea3499a712d87281bd749ed5c384430401f80f22.tar.gz
nextcloud-server-ea3499a712d87281bd749ed5c384430401f80f22.zip
fix class name
Diffstat (limited to 'apps/calendar')
-rw-r--r--apps/calendar/lib/share.php2
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'];