Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSigmund Augdal <sigmund.augdal@uninett.no>2013-06-14 20:38:38 +0400
committerSigmund Augdal <sigmund.augdal@uninett.no>2013-06-14 20:38:38 +0400
commit5aa911c916bb01c5e0861c9e823ff944469ccf5a (patch)
treeae398f1463d0bde7c1b449d0d67319e92b7a3137 /user_saml
parent996a36e8c24f7ebc771ca069821a3cc57fd3b128 (diff)
Fix access to unset array member
Diffstat (limited to 'user_saml')
-rw-r--r--user_saml/lib/hooks.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_saml/lib/hooks.php b/user_saml/lib/hooks.php
index a129f510f..29a1fa878 100644
--- a/user_saml/lib/hooks.php
+++ b/user_saml/lib/hooks.php
@@ -90,7 +90,7 @@ class OC_USER_SAML_Hooks {
static public function logout($parameters) {
$samlBackend = new OC_USER_SAML();
if ($samlBackend->auth->isAuthenticated()) {
- OC_Log::write('saml','Executing SAML logout: '.$parameters['uid'],OC_Log::DEBUG);
+ OC_Log::write('saml', 'Executing SAML logout', OC_Log::DEBUG);
$samlBackend->auth->logout();
}
return true;