Skip to content
Snippets Groups Projects
Verified Commit 5bd751b3 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #8417 selected categories default in add mode (admin action)

parent 7de67c25
No related branches found
No related tags found
No related merge requests found
......@@ -205,7 +205,7 @@ class ActionController
$obj['categoriesList'] = ResModel::getCategories();
foreach ($obj['categoriesList'] as $key => $value) {
$obj['categoriesList'][$key]['selected'] = true;
$obj['action']['actionCategories'][] = $value['id'];
}
$obj['statuses'] = StatusModel::get();
......@@ -219,7 +219,7 @@ class ActionController
protected function manageValue($request)
{
foreach ($request as $key => $value) {
foreach ($request as $key => $value) {
if (in_array($key, ['history'])) {
if (empty($value)) {
$request[$key] = 'N';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment