From 5bf69237b2471df9ee979200b19e0ce203df2a31 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek <frank@owncloud.org> Date: Tue, 1 May 2012 18:46:15 +0200 Subject: [PATCH] ported isLoggedIn --- apps/calendar/ajax/event/edit.form.php | 2 +- apps/calendar/ajax/event/new.form.php | 2 +- apps/files_encryption/appinfo/app.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/calendar/ajax/event/edit.form.php b/apps/calendar/ajax/event/edit.form.php index e963da3295..e2b23d71f9 100644 --- a/apps/calendar/ajax/event/edit.form.php +++ b/apps/calendar/ajax/event/edit.form.php @@ -8,7 +8,7 @@ -if(!OC_USER::isLoggedIn()) { +if(!OCP\User::isLoggedIn()) { die('<script type="text/javascript">document.location = oc_webroot;</script>'); } OC_JSON::checkAppEnabled('calendar'); diff --git a/apps/calendar/ajax/event/new.form.php b/apps/calendar/ajax/event/new.form.php index 62087e9a81..155e3dc371 100644 --- a/apps/calendar/ajax/event/new.form.php +++ b/apps/calendar/ajax/event/new.form.php @@ -8,7 +8,7 @@ -if(!OC_USER::isLoggedIn()) { +if(!OCP\User::isLoggedIn()) { die('<script type="text/javascript">document.location = oc_webroot;</script>'); } OC_JSON::checkAppEnabled('calendar'); diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index 68c445d5d7..fda2a55234 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -10,7 +10,7 @@ OC_Hook::connect('OC_User','post_login','OC_Crypt','loginListener'); stream_wrapper_register('crypt','OC_CryptStream'); -if(!isset($_SESSION['enckey']) and OC_User::isLoggedIn()){//force the user to re-loggin if the encryption key isn't unlocked (happens when a user is logged in before the encryption app is enabled) +if(!isset($_SESSION['enckey']) and OCP\User::isLoggedIn()){//force the user to re-loggin if the encryption key isn't unlocked (happens when a user is logged in before the encryption app is enabled) OC_User::logout(); header("Location: ".OC::$WEBROOT.'/'); exit(); -- GitLab