|
From: Meik S. <acy...@us...> - 2005-08-19 10:37:17
|
Update of /cvsroot/phpbb/phpBB2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21160 Modified Files: mcp.php Log Message: no longer needed here. ;) Index: mcp.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/mcp.php,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -r1.68 -r1.69 *** mcp.php 15 May 2005 20:17:34 -0000 1.68 --- mcp.php 19 Aug 2005 10:37:07 -0000 1.69 *************** *** 442,470 **** /** - * Build simple hidden fields from array - */ - function build_hidden_fields($field_ary) - { - $s_hidden_fields = ''; - - foreach ($field_ary as $name => $vars) - { - if (is_array($vars)) - { - foreach ($vars as $key => $value) - { - $s_hidden_fields .= '<input type="hidden" name="' . $name . '[' . $key . ']" value="' . $value . '" />'; - } - } - else - { - $s_hidden_fields .= '<input type="hidden" name="' . $name . '" value="' . $vars . '" />'; - } - } - - return $s_hidden_fields; - } - - /** * Get simple topic data */ --- 442,445 ---- |