From 6af770ab88b47147b5dde82f630b578fff6405de Mon Sep 17 00:00:00 2001 From: Tim van Dijen <tvdijen@gmail.com> Date: Sat, 6 Jan 2018 17:17:16 +0100 Subject: [PATCH] Coding style: s/and/&& --- modules/core/lib/Auth/Process/ScopeAttribute.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/lib/Auth/Process/ScopeAttribute.php b/modules/core/lib/Auth/Process/ScopeAttribute.php index 21b6a0553..5fd6d7a70 100644 --- a/modules/core/lib/Auth/Process/ScopeAttribute.php +++ b/modules/core/lib/Auth/Process/ScopeAttribute.php @@ -80,7 +80,7 @@ class sspmod_core_Auth_Process_ScopeAttribute extends SimpleSAML_Auth_Processing $attributes[$this->targetAttribute] = array(); } - if ($this->onlyIfEmpty and count($attributes[$this->targetAttribute]) > 0) { + if ($this->onlyIfEmpty && count($attributes[$this->targetAttribute]) > 0) { return; } -- GitLab