From 74953bcc6760c0e821889b8a1f11818e4cc055b8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 15 Dec 2012 16:25:58 +0100 Subject: php-horde-Horde-Routes: add patch for http://bugs.horde.org/ticket/11894 --- Horde_Routes-php54.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Horde_Routes-php54.patch (limited to 'Horde_Routes-php54.patch') diff --git a/Horde_Routes-php54.patch b/Horde_Routes-php54.patch new file mode 100644 index 0000000..8b28a1c --- /dev/null +++ b/Horde_Routes-php54.patch @@ -0,0 +1,11 @@ +--- lib/Horde/Routes/Mapper.php~ 2012-12-15 16:01:14.332176067 +0100 ++++ lib/Horde/Routes/Mapper.php 2012-12-15 16:01:20.330194840 +0100 +@@ -591,7 +591,7 @@ + // If the URL didn't depend on the SCRIPT_NAME, we'll cache it + // keyed by just the $kargs; otherwise we need to cache it with + // both SCRIPT_NAME and $kargs: +- $cacheKey = $kargs; ++ $cacheKey = serialize($kargs); + if (!empty($environ['SCRIPT_NAME'])) { + $cacheKeyScriptName = sprintf('%s:%s', $environ['SCRIPT_NAME'], $cacheKey); + } else { -- cgit