Skip to content
Snippets Groups Projects
Commit eb7dc893 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Do not loose label

parent 46976bd0
Branches
Tags
No related merge requests found
...@@ -214,11 +214,11 @@ if ($action == 'create') ...@@ -214,11 +214,11 @@ if ($action == 'create')
print '<td>&nbsp;</td>'; print '<td>&nbsp;</td>';
// Label // Label
print '<td align="left"><input type="text" size="34" name="label" class="flat"></td>'; print '<td align="left"><input type="text" size="34" name="label" class="flat" value="'.GETPOST('label').'"></td>';
// Type // Type
print '<td align="left">'; print '<td align="left">';
$formsocialcontrib->select_type_socialcontrib(isset($_POST["actioncode"])?$_POST["actioncode"]:'','actioncode',1); $formsocialcontrib->select_type_socialcontrib(GETPOST("actioncode")?GETPOST("actioncode"):'','actioncode',1);
print '</td>'; print '</td>';
// Date end period // Date end period
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment