diff options
author | Remi Collet <remi@remirepo.net> | 2017-09-05 07:27:20 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2017-09-05 07:27:20 +0200 |
commit | 42d9bb31840ef946e023ae17674e8f85364ca4f7 (patch) | |
tree | bec07c9382bae7289f4f20219817479936585271 /roundcubemail-pr5820.patch | |
parent | ff64249b54b4fdb84bc899cd4d5e421fef3c870e (diff) |
v1.3.1
Diffstat (limited to 'roundcubemail-pr5820.patch')
-rw-r--r-- | roundcubemail-pr5820.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/roundcubemail-pr5820.patch b/roundcubemail-pr5820.patch deleted file mode 100644 index 0f5cbc5..0000000 --- a/roundcubemail-pr5820.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 416eb9b80480b4e07b2868e37fb56fff966b77c7 Mon Sep 17 00:00:00 2001 -From: Remi Collet <remi@remirepo.net> -Date: Tue, 27 Jun 2017 11:40:09 +0200 -Subject: [PATCH] drop ereg dependency, fix compat with PHP 7 - ---- - plugins/password/drivers/cpanel_webmail.php | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/plugins/password/drivers/cpanel_webmail.php b/plugins/password/drivers/cpanel_webmail.php -index a34b6a1f8..8aabd3c6c 100644 ---- a/plugins/password/drivers/cpanel_webmail.php -+++ b/plugins/password/drivers/cpanel_webmail.php -@@ -41,7 +41,7 @@ public function save($curpas, $newpass) - { - $user = $_SESSION['username']; - $userpwd = "$user:$curpas"; -- list($login) = split('@', $user); -+ list($login) = explode('@', $user); - - $data = array( - 'email' => $login, |