Completed
Push — master ( 988761...5d514e )
by Fenz
02:27
created
libs/Parser/Node/TagNode.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -242,11 +242,11 @@
 block discarded – undo
242 242
 		return $this->setMultinameAttribute('link',$this->sectionLedBy('@',true),function( string$link ){
243 243
 			if( isset($this->config['target']) && ':'===$link{0} ){
244 244
 				return 'javascript'.$link;
245
-			}elseif( '//'===($firstTwoLetters=substr($link,0,2)) ){
245
+			} elseif( '//'===($firstTwoLetters=substr($link,0,2)) ){
246 246
 				return 'http:'.$link;
247
-			}elseif( '\\\\'===$firstTwoLetters ){
247
+			} elseif( '\\\\'===$firstTwoLetters ){
248 248
 				return 'https://'.substr($link,2);
249
-			}else{
249
+			} else{
250 250
 				return $this->checkExpression($link);
251 251
 			}
252 252
 		});
Please login to merge, or discard this patch.