diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-01-29 10:59:15 +0100 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-01-29 10:59:15 +0100 |
commit | 928e9b121b4d6b761084d7b2c58319d6e0225c05 (patch) | |
tree | 46f8c24d58201f89b1f5eb958d7b117d09536494 /apps/calendar/appinfo | |
parent | 57f2bf596935ced0f6cbda93ada19acaf1c13ffb (diff) | |
download | nextcloud-server-928e9b121b4d6b761084d7b2c58319d6e0225c05.tar.gz nextcloud-server-928e9b121b4d6b761084d7b2c58319d6e0225c05.zip |
fix version-compare in calendars app.php
Diffstat (limited to 'apps/calendar/appinfo')
-rw-r--r-- | apps/calendar/appinfo/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/appinfo/app.php b/apps/calendar/appinfo/app.php index c667a7c0849..9c95768895f 100644 --- a/apps/calendar/appinfo/app.php +++ b/apps/calendar/appinfo/app.php @@ -1,5 +1,5 @@ <?php -if(version_compare(PHP_VERSION, '5.3.0', '>')){ +if(version_compare(PHP_VERSION, '5.3.0', '>=')){ $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'; |