Add in Mailsorting project and also corrections to templates

This commit is contained in:
2025-05-04 13:01:38 +01:00
parent 8b54f7f61c
commit 7b0f9edb91
20 changed files with 9154 additions and 12 deletions

View File

@@ -28,7 +28,7 @@ use constant TRUE => 1;
<tal:block tal:repeat="panel panels">
sub validate_${panel} {
my $c = shift;
my ${prefix}_data = shift; #Data hash as parameter
my $$${prefix}_data = shift; #Data hash as parameter
# Validation for each field
my $ret = "";
<tal:block tal:repeat="field fields[panel]">
@@ -111,7 +111,7 @@ sub get_${tablecontrol[0]} {
<tal:block tal:repeat="panel panels">
sub perform_${panel} {
my $c = shift;
my ${prefix}_data = shift; #Data hash as parameter
my $$${prefix}_data = shift; #Data hash as parameter
my $ret = "";
my $db = $cdb; #maybe one of the others
my $dbkey = 'ChangeThis';