From 2f72370a98e2e5b7164c231216291b68ccb3f6b4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 1 Jul 2015 17:33:49 +0200 Subject: php-tecnickcom-tc-lib-barcode: 1.1.3 --- php-tecnickcom-tc-lib-barcode-pr2.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 php-tecnickcom-tc-lib-barcode-pr2.patch (limited to 'php-tecnickcom-tc-lib-barcode-pr2.patch') diff --git a/php-tecnickcom-tc-lib-barcode-pr2.patch b/php-tecnickcom-tc-lib-barcode-pr2.patch deleted file mode 100644 index 4116301..0000000 --- a/php-tecnickcom-tc-lib-barcode-pr2.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 1421aa08b9705ebfbef4b6cbbd3575483279a081 Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Wed, 1 Jul 2015 16:41:43 +0200 -Subject: [PATCH] restore php < 5.5 compatibility, fix #1 - ---- - src/Type/Square/QrCode.php | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/Type/Square/QrCode.php b/src/Type/Square/QrCode.php -index 59da935..12458fc 100644 ---- a/src/Type/Square/QrCode.php -+++ b/src/Type/Square/QrCode.php -@@ -108,7 +108,7 @@ protected function setParameters() - if (!isset($this->params[3])) { - $this->params[3] = 1; - } -- $this->case_sensitive = boolval($this->params[3]); -+ $this->case_sensitive = ($this->params[3] ? true : false); - } - - /** -- cgit