Skip to content

Commit

Permalink
fix case for COLOR
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRDOrazio committed May 23, 2024
1 parent fe12c74 commit 69c3975
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions LitCalAllFestivities.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,16 +198,16 @@
$FestivityCollection[ $key ][ "COMMON" ] = [];
$FestivityCollection[ $key ][ "CALENDAR" ] = "GENERAL ROMAN";
if( in_array( $key, $PropriumDeTemporeRed ) ) {
$FestivityCollection[ $key ][ "COLOR" ] = [ "RED" ];
$FestivityCollection[ $key ][ "COLOR" ] = [ "red" ];
}
else if( in_array( $key, $PropriumDeTemporePurple ) ) {
$FestivityCollection[ $key ][ "COLOR" ] = [ "PURPLE" ];
$FestivityCollection[ $key ][ "COLOR" ] = [ "purple" ];
}
else if( in_array( $key, $PropriumDeTemporePink ) ) {
$FestivityCollection[ $key ][ "COLOR" ] = [ "PINK" ];
$FestivityCollection[ $key ][ "COLOR" ] = [ "pink" ];
}
else {
$FestivityCollection[ $key ][ "COLOR" ] = [ "WHITE" ];
$FestivityCollection[ $key ][ "COLOR" ] = [ "white" ];
}
}
}
Expand Down

0 comments on commit 69c3975

Please sign in to comment.