fix CalendarUpdateFeeds causing warnings in logs
This commit is contained in:
parent
d2e55307ed
commit
d9b9573caa
2 changed files with 2 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
7.5.1
|
7.5.1
|
||||||
|
- fix: CalendarUpdateFeeds workflow causes errors in log
|
||||||
- rfe: maintenance - turn on/off maintenance mode from the command line
|
- rfe: maintenance - turn on/off maintenance mode from the command line
|
||||||
- Slight performance increase in asset queries.
|
- Slight performance increase in asset queries.
|
||||||
- fix: Pluggable URL handlers didn't work with gateways other than /.
|
- fix: Pluggable URL handlers didn't work with gateways other than /.
|
||||||
|
|
|
||||||
|
|
@ -168,7 +168,7 @@ sub execute {
|
||||||
# Flush old entry
|
# Flush old entry
|
||||||
# KEY;ATTRIBUTE=VALUE;ATTRIBUTE=VALUE:KEYVALUE
|
# KEY;ATTRIBUTE=VALUE;ATTRIBUTE=VALUE:KEYVALUE
|
||||||
my ($key_attrs,$value) = split /:/,$current_entry,2;
|
my ($key_attrs,$value) = split /:/,$current_entry,2;
|
||||||
my @attrs = split /;/, $key_attrs;
|
my @attrs = $key_attrs ? (split /;/, $key_attrs) : ();
|
||||||
my $key = shift @attrs;
|
my $key = shift @attrs;
|
||||||
my %attrs;
|
my %attrs;
|
||||||
while (my $attribute = shift @attrs) {
|
while (my $attribute = shift @attrs) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue