diff options
author | Remi Collet <remi@remirepo.net> | 2019-10-21 09:32:30 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-10-21 09:32:30 +0200 |
commit | e81ada511d9e1cd41718f42d1f314d7279e97579 (patch) | |
tree | 7a7226887d4058f08ca892a1dbe51dce9f911766 /1187.patch | |
parent | e141f93dafe7f79abf69128580dd333ad0e5d1e0 (diff) |
- update to 4.0.2
- drop patch merged upstream
Diffstat (limited to '1187.patch')
-rw-r--r-- | 1187.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/1187.patch b/1187.patch deleted file mode 100644 index c61fc7f..0000000 --- a/1187.patch +++ /dev/null @@ -1,23 +0,0 @@ -From f3c91ec654abe9774570ca0602a0e4916e3bf5b5 Mon Sep 17 00:00:00 2001 -From: Remi Collet <remi@remirepo.net> -Date: Tue, 20 Aug 2019 11:44:24 +0200 -Subject: [PATCH] fix Trying to access array offset on value of type null in - 7.4 - ---- - lib/DAV/Xml/Property/Href.php | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/DAV/Xml/Property/Href.php b/lib/DAV/Xml/Property/Href.php -index 2d55e0ace5..d60bd15887 100644 ---- a/lib/DAV/Xml/Property/Href.php -+++ b/lib/DAV/Xml/Property/Href.php -@@ -59,7 +59,7 @@ public function __construct($hrefs) - */ - public function getHref() - { -- return $this->hrefs[0]; -+ return $this->hrefs[0] ?? null; - } - - /** |