From a37c89e67c1f9e4c3decb437a67c646028dc29e1 Mon Sep 17 00:00:00 2001 From: Stricted Date: Sat, 11 Oct 2014 19:37:22 +0200 Subject: [PATCH] fix APC class for next APCu release --- APC.class.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/APC.class.php b/APC.class.php index 83cf39b..2328aa4 100644 --- a/APC.class.php +++ b/APC.class.php @@ -182,6 +182,11 @@ class APC { unset($cache['atime']); } + if (isset($cache['modification_time'])) { + $cache['mtime'] = $cache['modification_time']; + unset($cache['modification_time']); + } + $info[] = $cache; } } -- 2.20.1