Skip to content

Commit

Permalink
fix wrong variable
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRDOrazio committed May 21, 2024
1 parent 9769198 commit 4c83b5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LitCalAllFestivities.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
$LOCALE = isset( $_GET["locale"] ) && LitLocale::isValid( $_GET["locale"] ) ? $_GET["locale"] : "la";
$LOCALE = $LOCALE !== "LA" && $LOCALE !== "la" ? Locale::getPrimaryLanguage( $LOCALE ) : "la";

$NationalCalendar = isset( $_GET["nationalcalendar"] ) && in_array( strtoupper( $value ), $SUPPORTED_NATIONAL_CALENDARS ) ? strtoupper( $value ) : null;
$NationalCalendar = isset( $_GET["nationalcalendar"] ) && in_array( strtoupper( $_GET["nationalcalendar"] ), $SUPPORTED_NATIONAL_CALENDARS ) ? strtoupper( $_GET["nationalcalendar"] ) : null;
$DiocesanCalendar = isset( $_GET["diocesancalendar"] ) ? strtoupper( $_GET["diocesancalendar"] ) : null;

$NationalData = null;
Expand Down

0 comments on commit 4c83b5b

Please sign in to comment.