diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-04-07 22:45:44 -0400 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-04-07 22:45:44 -0400 |
commit | 960553f9c4fffe06fc6a9d80ed22fdcd2228a343 (patch) | |
tree | 3e9af412aca1246145eea1810474d4938187bb78 /apps/calendar/lib/app.php | |
parent | 5a4237a31dd326b6ce46a6a7f1e9f45d103f51b6 (diff) | |
download | nextcloud-server-960553f9c4fffe06fc6a9d80ed22fdcd2228a343.tar.gz nextcloud-server-960553f9c4fffe06fc6a9d80ed22fdcd2228a343.zip |
fix path and class name
Diffstat (limited to 'apps/calendar/lib/app.php')
-rw-r--r-- | apps/calendar/lib/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/calendar/lib/app.php b/apps/calendar/lib/app.php index 40de6deb432..4ea73688505 100644 --- a/apps/calendar/lib/app.php +++ b/apps/calendar/lib/app.php @@ -8,8 +8,8 @@ * * This class manages our app actions */ -self::$l10n = new OC_L10N('calendar'); -self::$tz = OC_Preferences::getValue(OC_USER::getUser(), 'calendar', 'timezone', date_default_timezone_get()); +OC_Calendar_App::$l10n = new OC_L10N('calendar'); +OC_Calendar_App::$tz = OC_Preferences::getValue(OC_USER::getUser(), 'calendar', 'timezone', date_default_timezone_get()); class OC_Calendar_App{ const CALENDAR = 'calendar'; const EVENT = 'event'; |