Update index.php

This commit is contained in:
Günter Lukas
2023-02-05 08:38:46 +01:00
committed by GitHub
parent d8ff9468af
commit f5600fdffc

View File

@@ -60,19 +60,11 @@ if (isset($user->socid) && $user->socid > 0) {
$socid = $user->socid;
}
restrictedArea($user, 'societe', $socid, '&societe', '', 'fk_soc', 'rowid', 0);
$max = $conf->global->MAIN_SIZE_SHORTLIST_LIMIT;
$now = dol_now();
// Security check
$socid = GETPOST("socid", 'int');
if ($user->socid > 0) {
$action = '';
$id = $user->socid;
} else {
$id = 0;
}
restrictedArea($user, 'societe', $id, '&societe', '', 'fk_soc', 'rowid', 0);
$maxofloop = (empty($conf->global->MAIN_MAXLIST_OVERLOAD) ? 500 : $conf->global->MAIN_MAXLIST_OVERLOAD);