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

Optimize field size

parent 5c985621
No related branches found
No related tags found
No related merge requests found
......@@ -844,7 +844,9 @@ function fieldList($fieldlist,$obj='')
}
else
{
print '<td><input type="text" class="flat" value="'.$obj->$fieldlist[$field].'" name="'.$fieldlist[$field].'" ></td>';
print '<td>';
print '<input type="text" '.($fieldlist[$field]=='libelle'?'size="32" ':'').' class="flat" value="'.$obj->$fieldlist[$field].'" name="'.$fieldlist[$field].'">';
print '</td>';
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment