Add missing samp tags and closing kbd tag
[lhc/web/wiklou.git] / includes / Linker.php
index b090817..3baf865 100644 (file)
@@ -1087,7 +1087,7 @@ class Linker {
                $newRel = Parser::getExternalLinkRel( $url, $title );
                if ( !isset( $attribs['rel'] ) || $attribs['rel'] === '' ) {
                        $attribs['rel'] = $newRel;
-               } elseif( $newRel !== '' ) {
+               } elseif ( $newRel !== '' ) {
                        // Merge the rel attributes.
                        $newRels = explode( ' ', $newRel );
                        $oldRels = explode( ' ', $attribs['rel'] );