Skip to content

Commit

Permalink
Update mkCal.php
Browse files Browse the repository at this point in the history
  • Loading branch information
goerdy authored Sep 12, 2023
1 parent 812f47f commit 3c2776a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkCal.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function mkCal($title, $Year, $locale, $daysText, $daysColor, $daysHollidays, $h
$w = 22; //Cell Width
$this->Cell(8,7,' ',1,0,'C',true);
for($i=1;$i<=12;$i++)
$this->Cell($w,7,$date = strftime('%B',strtotime($i."/01/1970")); ,1,0,'C',true);
$this->Cell($w,7,$date = strftime('%B',strtotime($i."/01/1970")) ,1,0,'C',true);
$this->Ln();
// Color and font restoration
$this->SetFillColor(224,235,255);
Expand Down

0 comments on commit 3c2776a

Please sign in to comment.