mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
CS Fix
This commit is contained in:
parent
077dfab7a6
commit
6eae44b766
|
|
@ -59,12 +59,15 @@ if ($action == 'update')
|
|||
{
|
||||
$error = 0;
|
||||
|
||||
$compta_mode = GETPOST('compta_mode','alpha');
|
||||
|
||||
if (in_array($compta_mode, array(
|
||||
$compta_modes = array(
|
||||
'RECETTES-DEPENSES',
|
||||
'CREANCES-DETTES'
|
||||
))) {
|
||||
);
|
||||
|
||||
$compta_mode = GETPOST('compta_mode','alpha');
|
||||
|
||||
|
||||
if (in_array($compta_mode,$compta_modes)) {
|
||||
|
||||
if (!dolibarr_set_const($db, 'COMPTA_MODE', $compta_mode, 'chaine', 0, '', $conf->entity)) {
|
||||
$error++;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user