From 97c4ef81218f1de85bb2cd406e3870bf9b08278e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 25 Mar 2021 14:21:20 +0100 Subject: add patch for PHP 8 from https://github.com/laminas/laminas-mvc-plugin-flashmessenger/pull/11 --- php-laminas-mvc-plugin-flashmessenger-php8.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 php-laminas-mvc-plugin-flashmessenger-php8.patch (limited to 'php-laminas-mvc-plugin-flashmessenger-php8.patch') diff --git a/php-laminas-mvc-plugin-flashmessenger-php8.patch b/php-laminas-mvc-plugin-flashmessenger-php8.patch new file mode 100644 index 0000000..09ee6f0 --- /dev/null +++ b/php-laminas-mvc-plugin-flashmessenger-php8.patch @@ -0,0 +1,12 @@ +diff -up ./src/View/Helper/FlashMessenger.php.php8 ./src/View/Helper/FlashMessenger.php +--- ./src/View/Helper/FlashMessenger.php.php8 2021-03-25 14:13:31.812239965 +0100 ++++ ./src/View/Helper/FlashMessenger.php 2021-03-25 14:14:00.140131501 +0100 +@@ -332,7 +332,7 @@ class FlashMessenger extends AbstractHel + return $this->escapeHtmlHelper; + } + +- if (method_exists($this->getView(), 'plugin')) { ++ if ($this->getView() && method_exists($this->getView(), 'plugin')) { + $this->escapeHtmlHelper = $this->view->plugin('escapehtml'); + } + -- cgit