Skip to content

Commit

Permalink
fix Locale class letter case
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRDOrazio authored Feb 4, 2024
1 parent 21a7b38 commit 61f9387
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 @@ -22,7 +22,7 @@
});

$LOCALE = isset( $_GET["locale"] ) && LitLocale::isValid( $_GET["locale"] ) ? $_GET["locale"] : "la";
$LOCALE = $LOCALE !== "LA" && $LOCALE !== "la" ? LOCALE::getPrimaryLanguage( $LOCALE ) : "la";
$LOCALE = $LOCALE !== "LA" && $LOCALE !== "la" ? Locale::getPrimaryLanguage( $LOCALE ) : "la";

foreach( $LatinMissals as $LatinMissal ) {
$DataFile = RomanMissal::getSanctoraleFileName( $LatinMissal );
Expand Down

0 comments on commit 61f9387

Please # to comment.