Completed
Pull Request — master (#16)
by Matt
04:17
created
src/Control/SAMLController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
             if (!isset($attributes[$claim][0])) {
166 166
                 $this->getLogger()->warning(
167 167
                     sprintf(
168
-                        'Claim rule \'%s\' configured in SAMLMemberExtension.claims_field_mappings, ' .
168
+                        'Claim rule \'%s\' configured in SAMLMemberExtension.claims_field_mappings, '.
169 169
                                 'but wasn\'t passed through. Please check IdP claim rules.',
170 170
                         $claim
171 171
                     )
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
                 echo $metadata;
211 211
             } else {
212 212
                 throw new Error(
213
-                    'Invalid SP metadata: ' . implode(', ', $errors),
213
+                    'Invalid SP metadata: '.implode(', ', $errors),
214 214
                     Error::METADATA_SP_INVALID
215 215
                 );
216 216
             }
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 
240 240
         // If a default login dest has been set, redirect to that.
241 241
         if (Security::config()->default_login_dest) {
242
-            return $this->redirect(Director::absoluteBaseURL() . Security::config()->default_login_dest);
242
+            return $this->redirect(Director::absoluteBaseURL().Security::config()->default_login_dest);
243 243
         }
244 244
 
245 245
         // fallback to redirect back to home page
Please login to merge, or discard this patch.