From 7e363e689c4efae3f86d651e86b5ddb2a2cabec1 Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Fri, 21 Jul 2023 17:20:16 +0200 Subject: [PATCH] fix minore --- actions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actions.php b/actions.php index b66e2e799..d80c960fe 100755 --- a/actions.php +++ b/actions.php @@ -319,13 +319,14 @@ elseif (filter('op') == 'copia-checklist') { elseif (filter('op') == 'aggiungi-check') { $content = post('content'); $parent_id = post('parent') ?: null; + $is_titolo = post('is_titolo'); $users = post('assigned_users'); $users = array_clean($users); $group_id = post('group_id'); - $check = Check::build($user, $structure, $id_record, $content, $parent_id); + $check = Check::build($user, $structure, $id_record, $content, $parent_id, $is_titolo); $check->setAccess($users, $group_id); }