diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-12-18 22:58:20 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-12-18 23:10:42 +0100 |
commit | 4eb36b0ecf40266ceb2abf0f5bc17dad4bde6951 (patch) | |
tree | 1c9a177a152e8c6e4155e7766f7ea5cfd991cf97 /apps/calendar/appinfo | |
parent | 3d1accab701730fbd2b0cb89cb8c727301f5d756 (diff) | |
download | nextcloud-server-4eb36b0ecf40266ceb2abf0f5bc17dad4bde6951.tar.gz nextcloud-server-4eb36b0ecf40266ceb2abf0f5bc17dad4bde6951.zip |
Calendar: refactor common ajax functions to OC_Calendar_App
Diffstat (limited to 'apps/calendar/appinfo')
-rw-r--r-- | apps/calendar/appinfo/app.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/calendar/appinfo/app.php b/apps/calendar/appinfo/app.php index 5675e624dda..ee990723c0c 100644 --- a/apps/calendar/appinfo/app.php +++ b/apps/calendar/appinfo/app.php @@ -1,5 +1,6 @@ <?php $l=new OC_L10N('calendar'); +OC::$CLASSPATH['OC_Calendar_App'] = 'apps/calendar/lib/app.php'; OC::$CLASSPATH['OC_Calendar_Calendar'] = 'apps/calendar/lib/calendar.php'; OC::$CLASSPATH['OC_Calendar_Object'] = 'apps/calendar/lib/object.php'; OC::$CLASSPATH['OC_Calendar_Hooks'] = 'apps/calendar/lib/hooks.php'; @@ -22,4 +23,4 @@ OC_App::addNavigationEntry( array( OC_App::registerPersonal('calendar', 'settings'); -require_once('apps/calendar/lib/search.php');
\ No newline at end of file +require_once('apps/calendar/lib/search.php'); |