Skip to content

Commit

Permalink
don't use stdClass as array
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRDOrazio committed May 21, 2024
1 parent 96827e8 commit 4a65406
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 @@ -172,7 +172,7 @@
if( $DataFile !== false ) {
$PropriumDeSanctis = json_decode( file_get_contents( $DataFile ) );
foreach( $PropriumDeSanctis as $idx => $festivity ) {
$key = $festivity[ "TAG" ];
$key = $festivity->TAG;
$FestivityCollection[ $key ] = $festivity;
$FestivityCollection[ $key ][ "MISSAL" ] = $missal;
}
Expand Down

0 comments on commit 4a65406

Please sign in to comment.