summaryrefslogtreecommitdiffstats
path: root/0001-drop-ereg-dep-for-php-7-in-Kolab_Format.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-07-03 14:06:19 +0200
committerRemi Collet <fedora@famillecollet.com>2016-07-03 14:06:19 +0200
commit5ca042e68c5ccbed9046ad832efcb63e4090757d (patch)
tree92f7f59e5c96a6f1d17f51cdee75c70178bf5a5e /0001-drop-ereg-dep-for-php-7-in-Kolab_Format.patch
parent33926bf3b72a22f6ba7452ad4f96a3bcf94f766e (diff)
php-horde-Horde-Kolab-Format: 2.0.9
Diffstat (limited to '0001-drop-ereg-dep-for-php-7-in-Kolab_Format.patch')
-rw-r--r--0001-drop-ereg-dep-for-php-7-in-Kolab_Format.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/0001-drop-ereg-dep-for-php-7-in-Kolab_Format.patch b/0001-drop-ereg-dep-for-php-7-in-Kolab_Format.patch
deleted file mode 100644
index fbb41c6..0000000
--- a/0001-drop-ereg-dep-for-php-7-in-Kolab_Format.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From a7a553fc381400d34e92408f921c58950ba43410 Mon Sep 17 00:00:00 2001
-From: Remi Collet <fedora@famillecollet.com>
-Date: Mon, 27 Jun 2016 07:14:04 +0200
-Subject: [PATCH] drop ereg dep for php 7 in Kolab_Format
-
----
- framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Annotation.php | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Annotation.php b/framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Annotation.php
-index e33e186..cb9a012 100644
---- a/framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Annotation.php
-+++ b/framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Annotation.php
-@@ -59,7 +59,7 @@ class Horde_Kolab_Format_Xml_Annotation extends Horde_Kolab_Format_Xml
-
- $result = array();
- foreach ($object['annotation'] as $annotation) {
-- list($key, $value) = split('#', $annotation, 2);
-+ list($key, $value) = explode('#', $annotation, 2);
- $result[base64_decode($key)] = base64_decode($value);
- }
-
---
-2.5.5
-