Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRDOrazio committed Mar 14, 2022
1 parent 8330fa0 commit 6cf80da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/LitCalAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -1822,11 +1822,11 @@ private function handleNationalCalendarRows( array $rows ) : void {
private function applyNationalCalendar() : void {
//first thing is apply any wider region festivities, such as Patron Saints of the Wider Region (example: Europe)
if( $this->WiderRegionData !== null && property_exists( $this->WiderRegionData, "LitCal" ) ) {
$this->handleNationalCalendarRow( $this->WiderRegionData->LitCal );
$this->handleNationalCalendarRows( $this->WiderRegionData->LitCal );
}

if( $this->NationalData !== null && property_exists( $this->NationalData, "LitCal" ) ) {
$this->handleNationalCalendarRow( $this->NationalData->LitCal );
$this->handleNationalCalendarRows( $this->NationalData->LitCal );
}

if( $this->NationalData !== null && property_exists( $this->NationalData, "Metadata" ) && property_exists( $this->NationalData->Metadata, "Missals" ) ) {
Expand Down

0 comments on commit 6cf80da

Please sign in to comment.