* Thu Jun 12 2025 Brian Read <brianr@koozali.org> 11.0.0-89.sme

- rework navigation weights to avoid duplicates [SME: 12996]
This commit is contained in:
2025-06-12 18:15:41 +01:00
parent e8d6d39583
commit 1a8f935431
13 changed files with 17 additions and 14 deletions

View File

@@ -3,7 +3,7 @@ package SrvMngr::Controller::Datetime;
#----------------------------------------------------------------------
# heading : System
# description : Date and time
# navigation : 4000 400
# navigation : 4000 300
# routes : end
#------------------------------
use strict;
@@ -361,7 +361,7 @@ sub getYear_list {
my $c= shift;
my @yearArray;
# could use also `/bin/date '+%Y'`
my $start=___YEAR___-40; my $max=___YEAR___+40;
my $start=2025-40; my $max=2025+40;
for ( my $i = $start; $i <= $max; $i++ ) {
push @yearArray,$i;