From 468ff5411b272e856f84b6a21f62df810a28a0ef Mon Sep 17 00:00:00 2001 From: Sundog Date: Wed, 25 Sep 2024 11:18:29 -0400 Subject: [PATCH] add new block dialog to scheduler --- tags.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tags.php b/tags.php index b004bf2..4f18dc7 100755 --- a/tags.php +++ b/tags.php @@ -61,6 +61,11 @@ if (isset($_POST['new_tag']) && $_POST['new_tag'] !== "") { $tagsForBlock['bumpers'] = $tags; $allTagsForBlock = array(); + $allTagsForBlock['program'] = array(); + $allTagsForBlock['promos'] = array(); + $allTagsForBlock['commercials'] = array(); + $allTagsForBlock['bumpers'] = array(); + while ($row = $tagsForBlockResult->fetchArray(SQLITE3_ASSOC)) { $allTagsForBlock[$row['slot_type']][] = $row['tag_id']; }