This commit is contained in:
Laurent Destailleur 2012-01-04 14:12:00 +01:00
parent 893b7b96f4
commit be0d4dbac1
2 changed files with 7 additions and 5 deletions

View File

@ -70,8 +70,12 @@ if (empty($conf->global->MEMBER_ENABLE_PUBLIC))
/** /**
* Show header for new member * Show header for new member
* *
* @param string $title * @param string $title Title
* @param string $head * @param string $head Head array
* @param int $disablejs More content into html header
* @param int $disablehead More content into html header
* @param array $arrayofjs Array of complementary js files
* @param array $arrayofcss Array of complementary css files
* @return void * @return void
*/ */
function llxHeaderVierge($title, $head="", $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='') function llxHeaderVierge($title, $head="", $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='')
@ -462,7 +466,7 @@ foreach($extrafields->attribute_label as $key=>$value)
{ {
print "<tr><td>".$value."</td><td>"; print "<tr><td>".$value."</td><td>";
print $extrafields->showInputField($key,GETPOST('options_'.$key)); print $extrafields->showInputField($key,GETPOST('options_'.$key));
print "</td></tr>"."\n"; print "</td></tr>\n";
} }
// Comments // Comments
print '<tr>'; print '<tr>';

View File

@ -61,8 +61,6 @@ function llxHeaderVierge($title, $head = "")
/** /**
* Show footer for member list * Show footer for member list
* *
* @param string $title
* @param string $head
* @return void * @return void
*/ */
function llxFooterVierge() function llxFooterVierge()