diff --git a/LitCalHealth.php b/LitCalHealth.php index e5fc9867..5bfe0e1b 100644 --- a/LitCalHealth.php +++ b/LitCalHealth.php @@ -178,7 +178,7 @@ private function executeValidation( object $validation, ConnectionInterface $to private function validateCalendar( string $Calendar, int $Year, string $category, ConnectionInterface $to ) : void { if( $Calendar === 'VATICAN' ) { - $req = "?year=$Year&calendartype=CIVIL"; + $req = "?nationalcalendar=VATICAN&year=$Year&calendartype=CIVIL"; } else { $req = "?$category=$Calendar&year=$Year&calendartype=CIVIL"; } @@ -228,7 +228,7 @@ private function validateCalendar( string $Calendar, int $Year, string $category private function executeUnitTest( string $Test, string $Calendar, int $Year, string $category, ConnectionInterface $to ) : void { if( $Calendar === 'VATICAN' ) { - $req = "?year=$Year&calendartype=CIVIL"; + $req = "?nationalcalendar=VATICAN&year=$Year&calendartype=CIVIL"; } else { $req = "?$category=$Calendar&year=$Year&calendartype=CIVIL"; }