From c1aab3eb84bf16276ee76f88e936ac5d040a9e59 Mon Sep 17 00:00:00 2001 From: Brian Read Date: Tue, 4 Nov 2025 11:44:27 +0000 Subject: [PATCH] * Tue Nov 04 2025 Brian Read 11.0.0-127.sme - Move same var declations to outside innner scope [SME: 13073] --- .../themes/default/templates/partials/_grp_list.html.ep | 6 ++---- smeserver-manager.spec | 5 ++++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/root/usr/share/smanager/themes/default/templates/partials/_grp_list.html.ep b/root/usr/share/smanager/themes/default/templates/partials/_grp_list.html.ep index 29589d9..abaf733 100644 --- a/root/usr/share/smanager/themes/default/templates/partials/_grp_list.html.ep +++ b/root/usr/share/smanager/themes/default/templates/partials/_grp_list.html.ep @@ -35,13 +35,13 @@ % foreach my $group (@$groups) % { + % my $csrf_token = "TOKEN"; # CSRF token for security + % my $group_name = $group->key; # group name extracted from the data structure %= t td => ( class => 'sme-border' ) => $group->key %= t td => ( class => 'sme-border' ) => $group->prop('Description') % my $modify_text = l('MODIFY'); # Localized text - % my $csrf_token = "TOKEN"; # CSRF token for security - % my $group_name = $group->key; # group name extracted from the data structure % my $actionModify = qq{ % % }; % my $remove_text = l('REMOVE'); # Localized text - % my $csrf_token = "TOKEN"; # CSRF token for security - % my $group_name = $group->key; # group name extracted from the data structure % my $actionRemove = qq{ % 11.0.0-127.sme +- Move same var declations to outside innner scope [SME: 13073] + * Tue Nov 04 2025 Brian Read 11.0.0-126.sme - Remove debugging dump in portforwarding which crashes if no data [SME: 13243]