From 7f937555e5e32eff7e4a203b4316ed741c6a932a Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Fri, 21 Aug 2009 21:57:53 +0000 Subject: [PATCH] Make Xml::hidden() a wrapper around Html::hidden() HTML-specific stuff should go into the Html class; it doesn't belong in Xml. --- includes/Xml.php | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/includes/Xml.php b/includes/Xml.php index 5359f32362..88bbadc0bb 100644 --- a/includes/Xml.php +++ b/includes/Xml.php @@ -398,17 +398,10 @@ class Xml { } /** - * Convenience function to build an HTML hidden form field. - * @param $name String: name attribute for the field - * @param $value String: value for the hidden field - * @param $attribs Array: optional custom attributes - * @return string HTML + * @deprecated Synonymous to Html::hidden() */ - public static function hidden( $name, $value, $attribs=array() ) { - return self::element( 'input', array( - 'name' => $name, - 'type' => 'hidden', - 'value' => $value ) + $attribs ); + public static function hidden( $name, $value, $attribs = array() ) { + return Html::hidden( $name, $value, $attribs ); } /** -- 2.20.1