* Use Html::linkedScript() and Html::inlineScript()

This commit is contained in:
Alexandre Emsenhuber 2010-06-02 19:28:44 +00:00
parent 8713be36fc
commit 3d57cb9db8

View file

@ -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 );
}
/**