* Mon Jul 14 2025 Brian Read <brianr@koozali.org> 11.0.0-106.sme

- Datetime panel: Typo in error message - missing _ [SME: 13078]
- ditto user accounts panel                         [SME: 13078]
- ditto groups panel                                [SME: 13078]
This commit is contained in:
2025-07-14 11:44:49 +01:00
parent 1d00f2aeb2
commit 5ba77e4526
4 changed files with 12 additions and 7 deletions

View File

@@ -255,7 +255,7 @@ sub validate_change_datetime {
}
if (($minute < 0) || ($minute > 59)) {
return $c->l('datINVALID_MINUTE') . " $minute. " . $c->l('dat_BETWEEN_0_AND_59');
return $c->l('dat_INVALID_MINUTE') . " $minute. " . $c->l('dat_BETWEEN_0_AND_59');
}
my $second = $c->param('second');