Merge "WebInstaller::docLink: Use Html::element to generate the link"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Sun, 10 Jun 2018 08:17:23 +0000 (08:17 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Sun, 10 Jun 2018 08:17:23 +0000 (08:17 +0000)
includes/installer/WebInstaller.php

index 9dc54a2..018754b 100644 (file)
@@ -1142,9 +1142,7 @@ class WebInstaller extends Installer {
        public function docLink( $linkText, $attribs, $parser ) {
                $url = $this->getDocUrl( $attribs['href'] );
 
-               return '<a href="' . htmlspecialchars( $url ) . '">' .
-                       htmlspecialchars( $linkText ) .
-                       '</a>';
+               return Html::element( 'a', [ 'href' => $url ], $linkText );
        }
 
        /**