From 5b64ff8f30058852f613b7a4eb795edabc350baa Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 1 Apr 2016 15:15:33 +0200 Subject: GLPI 0.90.2 --- glpi-0.90-zf25.patch | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 glpi-0.90-zf25.patch (limited to 'glpi-0.90-zf25.patch') diff --git a/glpi-0.90-zf25.patch b/glpi-0.90-zf25.patch deleted file mode 100644 index 0a16f81..0000000 --- a/glpi-0.90-zf25.patch +++ /dev/null @@ -1,26 +0,0 @@ -From dc5faa994b3103d7740e88c5de79969f6e58a237 Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Thu, 24 Mar 2016 19:21:05 +0100 -Subject: [PATCH] Fix compat with ZF 2.5 - -2.4: Zend\Cache\Exception\ExtensionNotLoadedException -2.5: Zend\ServiceManager\Exception\ServiceNotCreatedException - -(cherry picked from commit 9474d5743122d4b1fc3bd5965d0eb798a93ad668) ---- - inc/session.class.php | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/inc/session.class.php b/inc/session.class.php -index f5deef5..dd572d7 100644 ---- a/inc/session.class.php -+++ b/inc/session.class.php -@@ -578,7 +578,7 @@ static function loadLanguage($forcelang='') { - try { - $cache = Zend\Cache\StorageFactory::factory(array('adapter' => 'apc')); - $TRANSLATE->setCache($cache); -- } catch (Zend\Cache\Exception\ExtensionNotLoadedException $e) { -+ } catch (Exception $e) { - // ignore when APC not available - // toolbox::logDebug($e->getMessage()); - } -- cgit