diff options
author | Remi Collet <remi@remirepo.net> | 2020-01-02 14:40:23 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-01-02 14:40:23 +0100 |
commit | 8f7dc222f2a272ecd16e1238996364155b7601f9 (patch) | |
tree | 0e2b9aa79268070f17cc6553b6495055cfce9031 /2.patch | |
parent | f75c88928e3b2a86e3fa8c638e5a83276d6ae787 (diff) |
- add patch for PHP 7.4 from https://github.com/laminas/laminas-barcode/pull/2
Diffstat (limited to '2.patch')
-rw-r--r-- | 2.patch | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -0,0 +1,35 @@ +From c765b77757f5fff04998232fd45d401b48288102 Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Thu, 2 Jan 2020 14:34:04 +0100 +Subject: [PATCH] Fix Invalid characters passed for attempted conversion (7.4) + +--- + src/Object/AbstractObject.php | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/src/Object/AbstractObject.php b/src/Object/AbstractObject.php +index a3b2d48..0fa2689 100644 +--- a/src/Object/AbstractObject.php ++++ b/src/Object/AbstractObject.php +@@ -429,8 +429,8 @@ public function getFactor() + */ + public function setForeColor($value) + { +- if (preg_match('`\#[0-9A-F]{6}`', $value)) { +- $this->foreColor = hexdec($value); ++ if (preg_match('`\#([0-9A-F]{6})`', $value, $reg)) { ++ $this->foreColor = hexdec($reg[1]); + } elseif (is_numeric($value) && $value >= 0 && $value <= 16777125) { + $this->foreColor = intval($value); + } else { +@@ -460,8 +460,8 @@ public function getForeColor() + */ + public function setBackgroundColor($value) + { +- if (preg_match('`\#[0-9A-F]{6}`', $value)) { +- $this->backgroundColor = hexdec($value); ++ if (preg_match('`\#([0-9A-F]{6})`', $value, $reg)) { ++ $this->backgroundColor = hexdec($reg[1]); + } elseif (is_numeric($value) && $value >= 0 && $value <= 16777125) { + $this->backgroundColor = intval($value); + } else { |