Fixed an error being thrown by the CalendarUpdateFeeds workflow activity.
This commit is contained in:
parent
738e8980e3
commit
9c21429b39
2 changed files with 2 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
7.8.3
|
7.8.3
|
||||||
|
- Fixed an error being thrown by the CalendarUpdateFeeds workflow activity.
|
||||||
- fixed #11074: Links to CS posts not working
|
- fixed #11074: Links to CS posts not working
|
||||||
- fixed #11152: Image edits do not autocommit version tags
|
- fixed #11152: Image edits do not autocommit version tags
|
||||||
- fixed template attachments are not cleaned up during purge
|
- fixed template attachments are not cleaned up during purge
|
||||||
|
|
|
||||||
|
|
@ -100,6 +100,7 @@ sub execute {
|
||||||
my $getCalendar = WebGUI::Asset::Wobject::Calendar->getIsa($session);
|
my $getCalendar = WebGUI::Asset::Wobject::Calendar->getIsa($session);
|
||||||
|
|
||||||
CALENDAR: while (my $calendar = $getCalendar->()) {
|
CALENDAR: while (my $calendar = $getCalendar->()) {
|
||||||
|
next unless defined $calendar;
|
||||||
my $calendarTitle = $calendar->getTitle;
|
my $calendarTitle = $calendar->getTitle;
|
||||||
my $calendarId = $calendar->getId;
|
my $calendarId = $calendar->getId;
|
||||||
if ( $calendar->get( "state" ) ne "published" ) {
|
if ( $calendar->get( "state" ) ne "published" ) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue