Paramètre null passé

This commit is contained in:
Fred Tempez 2022-10-04 10:17:48 +02:00
parent fd85a595be
commit 5da6f3e646
1 changed files with 9 additions and 7 deletions

View File

@ -2815,13 +2815,15 @@ class core extends common {
// Check l'existence de l'action
$action = '';
$ignore = true;
foreach(explode('-', $this->getUrl(1)) as $actionPart) {
if($ignore) {
$action .= $actionPart;
$ignore = false;
}
else {
$action .= ucfirst($actionPart);
if (!is_null($this->getUrl(1))) {
foreach(explode('-', $this->getUrl(1)) as $actionPart) {
if($ignore) {
$action .= $actionPart;
$ignore = false;
}
else {
$action .= ucfirst($actionPart);
}
}
}
$action = array_key_exists($action, $module::$actions) ? $action : 'index';