mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Fix: Minor fix into user interface
This commit is contained in:
parent
d4f81a9ee7
commit
fc71073e4e
|
|
@ -198,7 +198,8 @@ foreach ($syslogModules as $moduleName)
|
|||
{
|
||||
foreach ($setuparray as $option)
|
||||
{
|
||||
if (defined($option['constant'])) $value = constant($option['constant']);
|
||||
if (isset($_POST[$option['constant']])) $value=$_POST[$option['constant']];
|
||||
else if (defined($option['constant'])) $value = constant($option['constant']);
|
||||
else $value = (isset($option['default']) ? $option['default'] : '');
|
||||
|
||||
print $option['name'].': <input type="text" class="flat" name="'.$option['constant'].'" value="'.$value.'"'.(isset($option['attr']) ? ' '.$option['attr'] : '').'>';
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ FullPathToPostgreSQLdumpCommand= Chemin complet vers la commande pg_dump
|
|||
ExportOptions= Options d'exportation
|
||||
AddDropDatabase= Ajouter ordres DROP DATABASE
|
||||
AddDropTable= Ajouter ordres DROP TABLE
|
||||
Structure=Structure
|
||||
ExportStructure=Structure
|
||||
Datas= Données
|
||||
NameColumn= Nomme les colonnes
|
||||
ExtendedInsert= Instructions INSERT étendues
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user