From d68ed18d9396ad10e38bcd88052b7de5e3a562d4 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Tue, 26 Apr 2011 21:25:01 +0000 Subject: [PATCH] Add doc --- include/class_html_input.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/class_html_input.php b/include/class_html_input.php index d40e58a4e..7b952c760 100755 --- a/include/class_html_input.php +++ b/include/class_html_input.php @@ -496,25 +496,25 @@ class HtmlInput $r=self::array_to_hidden($array,$_GET ); return $r; } + /** *transform $_POST data to hidden *@param $array is an of indices *@see HtmlInput::request_to_hidden *@return html string with the hidden data */ - static function post_to_hidden($array) { $r=self::array_to_hidden($array,$_POST ); return $r; } + /** *transform $_REQUEST data to hidden *@param $array is an of indices *@see HtmlInput::request_to_hidden *@return html string with the hidden data */ - static function request_to_hidden($array) { $r=self::array_to_hidden($array,$_REQUEST );