Skip to content

Commit

Permalink
Merge pull request #20 from jonnitto/patch-1
Browse files Browse the repository at this point in the history
FEATURE: Use × instead of x
  • Loading branch information
mficzel authored Aug 14, 2020
2 parents ea320ac + b644356 commit 442dfec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/DummyImageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function imageAction(int $w = 600, int $h = 400, string $bg = '#000', str
}

if ($renderText) {
$text = trim((string)$t) ?: sprintf('%s x %s', $width, $height);
$text = trim((string)$t) ?: sprintf('%s×%s', $width, $height);
$this->renderText($image, $foregroundColor, $width, $height, $text, $renderShape ? false : true);
}

Expand Down

0 comments on commit 442dfec

Please sign in to comment.