Index: branches/wmf/1.18wmf1/includes/Xml.php |
— | — | @@ -451,6 +451,13 @@ |
452 | 452 | } |
453 | 453 | |
454 | 454 | /** |
| 455 | + * @deprecated Synonymous to Html::hidden() |
| 456 | + */ |
| 457 | + public static function hidden( $name, $value, $attribs = array() ) { |
| 458 | + return Html::hidden( $name, $value, $attribs ); |
| 459 | + } |
| 460 | + |
| 461 | + /** |
455 | 462 | * Convenience function to build an HTML drop-down list item. |
456 | 463 | * @param $text String: text for this item |
457 | 464 | * @param $value String: form submission value; if empty, use text |