diff options
Diffstat (limited to 'apps/user_openid/appinfo/app.php')
-rw-r--r-- | apps/user_openid/appinfo/app.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/user_openid/appinfo/app.php b/apps/user_openid/appinfo/app.php index cbcbe544221..730039570a0 100644 --- a/apps/user_openid/appinfo/app.php +++ b/apps/user_openid/appinfo/app.php @@ -26,14 +26,14 @@ OC_User::useBackend('openid'); //check for results from openid requests if(isset($_GET['openid_mode']) and $_GET['openid_mode'] == 'id_res'){ - OC_Log::write('user_openid','openid retured',OC_Log::DEBUG); + OCP\Util::writeLog('user_openid','openid retured',OC_Log::DEBUG); $openid = new SimpleOpenID; $openid->SetIdentity($_GET['openid_identity']); $openid_validation_result = $openid->ValidateWithServer(); if ($openid_validation_result == true){ // OK HERE KEY IS VALID - OC_Log::write('user_openid','auth sucessfull',OC_Log::DEBUG); + OCP\Util::writeLog('user_openid','auth sucessfull',OC_Log::DEBUG); $identity=$openid->GetIdentity(); - OC_Log::write('user_openid','auth as '.$identity,OC_Log::DEBUG); + OCP\Util::writeLog('user_openid','auth as '.$identity,OC_Log::DEBUG); $user=OC_USER_OPENID::findUserForIdentity($identity); if($user){ $_SESSION['user_id']=$user; @@ -41,13 +41,13 @@ if(isset($_GET['openid_mode']) and $_GET['openid_mode'] == 'id_res'){ } }else if($openid->IsError() == true){ // ON THE WAY, WE GOT SOME ERROR $error = $openid->GetError(); - OC_Log::write('user_openid','ERROR CODE: '. $error['code'],OC_Log::ERROR); - OC_Log::write('user_openid','ERROR DESCRIPTION: '. $error['description'],OC_Log::ERROR); + OCP\Util::writeLog('user_openid','ERROR CODE: '. $error['code'],OC_Log::ERROR); + OCP\Util::writeLog('user_openid','ERROR DESCRIPTION: '. $error['description'],OC_Log::ERROR); }else{ // Signature Verification Failed - OC_Log::write('user_openid','INVALID AUTHORIZATION',OC_Log::ERROR); + OCP\Util::writeLog('user_openid','INVALID AUTHORIZATION',OC_Log::ERROR); } }else if (isset($_GET['openid_mode']) and $_GET['openid_mode'] == 'cancel'){ // User Canceled your Request - OC_Log::write('user_openid','USER CANCELED REQUEST',OC_Log::DEBUG); + OCP\Util::writeLog('user_openid','USER CANCELED REQUEST',OC_Log::DEBUG); return false; } |