mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Markdown: remove redundant int cast
For #25641 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
84de7a8d63
commit
4d7c4b3d2f
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ class MarkDown extends TXT {
|
|||
$nextLineStart -= $actualFontSize;
|
||||
}
|
||||
} else {
|
||||
$y -= (int)$fontSize;
|
||||
$y -= $fontSize;
|
||||
imagestring($image, 1, $x, $y, $line, $textColor);
|
||||
$nextLineStart = $fontSize;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue