From 912f0a8b95aee54c4ad7ef1a12645ae960296fa3 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Fri, 7 Jan 2022 18:34:00 +0000 Subject: [PATCH] Fixing style errors. --- htdocs/emailcollector/class/emailcollector.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/emailcollector/class/emailcollector.class.php b/htdocs/emailcollector/class/emailcollector.class.php index d6204fa632f..7a4330aa161 100644 --- a/htdocs/emailcollector/class/emailcollector.class.php +++ b/htdocs/emailcollector/class/emailcollector.class.php @@ -763,11 +763,11 @@ class EmailCollector extends CommonObject $flags .= '/norsh'; } //Used in shared mailbox from Office365 - if (strpos($this->login,'/') != false) { - $partofauth = explode ('/',$this->login); + if (strpos($this->login, '/') != false) { + $partofauth = explode('/', $this->login); $flags .= '/authuser='.$partofauth[0].'/user='.$partofauth[1]; } - + $connectstringserver = '{'.$this->host.':993'.$flags.'}'; return $connectstringserver;