From 3d57cb9db8974deadf483c6ef9f70ba9862a4034 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Wed, 2 Jun 2010 19:28:44 +0000 Subject: [PATCH] * Use Html::linkedScript() and Html::inlineScript() --- includes/ProtectionForm.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/includes/ProtectionForm.php b/includes/ProtectionForm.php index 19dd523cbe..41436a5074 100644 --- a/includes/ProtectionForm.php +++ b/includes/ProtectionForm.php @@ -571,9 +571,7 @@ class ProtectionForm { function buildScript() { global $wgStylePath, $wgStyleVersion; - return Xml::tags( 'script', array( - 'type' => 'text/javascript', - 'src' => $wgStylePath . "/common/protect.js?$wgStyleVersion.1" ), '' ); + return Html::linkedScript( "$wgStylePath/common/protect.js?$wgStyleVersion.1" ); } function buildCleanupScript() { @@ -595,7 +593,7 @@ class ProtectionForm { $encOptions = Xml::encodeJsVar( $options ); $script .= "ProtectionForm.init($encOptions)"; - return Xml::tags( 'script', array( 'type' => 'text/javascript' ), $script ); + return Html::inlineScript( $script ); } /** -- 2.20.1