summaryrefslogtreecommitdiffstats
path: root/php-laminas-tag-escaper.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-12-03 07:48:14 +0100
committerRemi Collet <remi@php.net>2021-12-03 07:48:14 +0100
commitac7e8d43695ccbf40d9214ceacff64161dde3c38 (patch)
tree92c6fe400cdc05df2a4dcfbc625692f333324395 /php-laminas-tag-escaper.patch
parent9950edb163c3fe72e307839329d3fdaf0e0b30d9 (diff)
update to 2.9.0HEADmaster
keep compatibility using laminas-zendframework-bridge as this is only used using compat autolader raise dependency on PHP 7.4 raise dependency on laminas-escaper 2.9 raise dependency on laminas-stdlib 3.6
Diffstat (limited to 'php-laminas-tag-escaper.patch')
-rw-r--r--php-laminas-tag-escaper.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/php-laminas-tag-escaper.patch b/php-laminas-tag-escaper.patch
deleted file mode 100644
index fed770c..0000000
--- a/php-laminas-tag-escaper.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From d864af14cf8645f5ab09df9cd406b4eafd113a57 Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@remirepo.net>
-Date: Tue, 3 Aug 2021 10:36:00 +0200
-Subject: [PATCH] fix for laminas/escaper 2.8
-
----
- src/Cloud/Decorator/HtmlTag.php | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/Cloud/Decorator/HtmlTag.php b/src/Cloud/Decorator/HtmlTag.php
-index 6e50578..89ab75b 100644
---- a/src/Cloud/Decorator/HtmlTag.php
-+++ b/src/Cloud/Decorator/HtmlTag.php
-@@ -241,7 +241,7 @@ public function render($tags)
-
- $tagHTML = sprintf(
- '<a href="%s" %s>%s</a>',
-- $escaper->escapeHtml($tag->getParam('url')),
-+ $escaper->escapeHtml($tag->getParam('url') ?? ''),
- $attribute,
- $escaper->escapeHtml($tag->getTitle())
- );