Ajout charset affiché sur page info systeme

This commit is contained in:
Laurent Destailleur 2007-05-27 04:04:49 +00:00
parent a8349e1b9c
commit 0c5284c0ad

View File

@ -1,6 +1,6 @@
<?php <?php
/* Copyright (C) 2001-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2001-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2006 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -94,7 +94,9 @@ print '</table>';
print '<br>'; print '<br>';
// conf.php file // conf.php file
$configfileparameters=array('dolibarr_main_url_root', $configfileparameters=array(
// 'separator',
'dolibarr_main_url_root',
'dolibarr_main_document_root', 'dolibarr_main_document_root',
'dolibarr_main_data_root', 'dolibarr_main_data_root',
'dolibarr_main_db_host', 'dolibarr_main_db_host',
@ -103,13 +105,17 @@ $configfileparameters=array('dolibarr_main_url_root',
'dolibarr_main_db_pass', 'dolibarr_main_db_pass',
'dolibarr_main_db_type', 'dolibarr_main_db_type',
'separator', 'separator',
'character_set_client',
'separator',
'dolibarr_main_authentication', 'dolibarr_main_authentication',
'separator', 'separator',
'dolibarr_smarty_libs_dir', 'dolibarr_smarty_libs_dir',
'dolibarr_smarty_compile', 'dolibarr_smarty_compile',
'dolibarr_smarty_cache' 'dolibarr_smarty_cache'
); );
$configfilelib=array($langs->trans("URLRoot"), $configfilelib=array(
// 'separator',
$langs->trans("URLRoot"),
$langs->trans("DocumentRootServer"), $langs->trans("DocumentRootServer"),
$langs->trans("DataRootServer"), $langs->trans("DataRootServer"),
$langs->trans("DatabaseServer"), $langs->trans("DatabaseServer"),
@ -118,6 +124,8 @@ $configfilelib=array($langs->trans("URLRoot"),
$langs->trans("Password"), $langs->trans("Password"),
$langs->trans("DriverType"), $langs->trans("DriverType"),
'separator', 'separator',
$langs->trans("Charset"),
'separator',
$langs->trans("AuthenticationMode"), $langs->trans("AuthenticationMode"),
'separator', 'separator',
$langs->trans("SmartyLibs"), $langs->trans("SmartyLibs"),