refactoring

update package definition
fix dependencies
remove global variables
This commit is contained in:
Milan
2018-09-02 09:39:24 +02:00
parent 3e338758e9
commit a6b656779b
71 changed files with 2135 additions and 2297 deletions

View File

@@ -117,7 +117,7 @@ sub show_events {
$params->{years} = $years;
#print STDERR Dumper($params);
template::process( 'print', $params->{template}, $params );
template::process($config, 'print', $params->{template}, $params );
return;
}
@@ -171,7 +171,7 @@ sub check_params {
$checked->{studio_id} = -1;
}
$checked->{template} = template::check( $params->{template}, 'selectEvent' );
$checked->{template} = template::check($config, $params->{template}, 'selectEvent' );
return $checked;
}