mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-27 20:58:40 +01:00
Fix implicit cast.
This commit is contained in:
parent
5818919607
commit
ca5d2f4990
@ -94,7 +94,7 @@ if ($stmt->fetch()) {
|
|||||||
header('Content-Type: image/jpeg');
|
header('Content-Type: image/jpeg');
|
||||||
}
|
}
|
||||||
header('ETag: \'' . $thash . '\'');
|
header('ETag: \'' . $thash . '\'');
|
||||||
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $tlast / 1000) . ' GMT');
|
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', (int) ($tlast / 1000)) . ' GMT');
|
||||||
if (is_null($tnewimage)) {
|
if (is_null($tnewimage)) {
|
||||||
echo $timage;
|
echo $timage;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user