Remove hexdec() format warning in PHP 8

This commit is contained in:
Miraty 2021-04-13 00:44:08 +02:00
parent 70c6bbf3b9
commit b4aefde885
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ if (badQuery()) {
require "phpqrcode.php"; require "phpqrcode.php";
$cheminImage = "temp/" . generateRandomString($fileNameLenght) . ".png"; $cheminImage = "temp/" . generateRandomString($fileNameLenght) . ".png";
QRcode::png($_GET['txt'], $cheminImage, $_GET['redondancy'], $_GET['size'], $_GET['margin'], false, hexdec($_GET['bgColor']), hexdec($_GET['mainColor'])); QRcode::png($_GET['txt'], $cheminImage, $_GET['redondancy'], $_GET['size'], $_GET['margin'], false, hexdec(substr($_GET['bgColor'], -6)), hexdec(substr($_GET['mainColor'], -6)));
?> ?>
<div class="centered"> <div class="centered">
<a href="<?php echo $cheminImage; ?>" class="button" download="<?php echo htmlspecialchars($_GET['txt']); ?>.png"><?= $loc['button_download'] ?></a> <a href="<?php echo $cheminImage; ?>" class="button" download="<?php echo htmlspecialchars($_GET['txt']); ?>.png"><?= $loc['button_download'] ?></a>