Merge branch 'ent-8301-Fallo-pandora-manage-pl' into 'develop'

minor fix

See merge request artica/pandorafms!4548
This commit is contained in:
Daniel Rodriguez 2021-11-24 10:23:48 +00:00
commit 07ef0477af
1 changed files with 1 additions and 1 deletions

View File

@ -978,7 +978,7 @@ sub pandora_get_same_day_id ($$) {
my $weeks = { 'monday' => 1, 'tuesday' => 2, 'wednesday' => 3, 'thursday' => 4, 'friday' => 5, 'saturday' => 6, 'sunday' => 7, 'holiday' => 8};
return defined ($weeks{$same_day}) ? $weeks{$same_day} : -1;
return defined ($weeks->{$same_day}) ? $weeks->{$same_day} : -1;
}
##########################################################################