From: Christian Weiske Date: Fri, 13 May 2011 16:11:14 +0000 (+0200) Subject: allow ssl client login with other authentication sources X-Git-Tag: v0.98.0~37^2~12 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=62afb014825e85c40df225358d608bef430a8949;p=semanticscuttle.git allow ssl client login with other authentication sources --- diff --git a/src/SemanticScuttle/Service/AuthUser.php b/src/SemanticScuttle/Service/AuthUser.php index 479b68a..9447ee4 100644 --- a/src/SemanticScuttle/Service/AuthUser.php +++ b/src/SemanticScuttle/Service/AuthUser.php @@ -130,7 +130,7 @@ class SemanticScuttle_Service_AuthUser extends SemanticScuttle_Service_User //FIXME: caching? $name = $this->auth->getUsername(); if (!$name) { - return false; + return parent::getCurrentUserId(); } return $this->getIdFromUser($name); }