all repos — wp-ffpc @ 97aee6df12b17859ccaf6dbf916f088d8beb5524

apc_cache_info replaced with apc_sma_info, faster

git-svn-id: http://plugins.svn.wordpress.org/wp-ffpc/trunk@511033 b8457f37-d9ea-0310-8a92-e5e31aec5664
cadeyrn cadeyrn@b8457f37-d9ea-0310-8a92-e5e31aec5664
Mon, 27 Feb 2012 09:34:49 +0000
commit

97aee6df12b17859ccaf6dbf916f088d8beb5524

parent

127b5fd01ce01f3cfc3f064dbe3cd3fb6fb89a41

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M wp-ffpc-common.phpwp-ffpc-common.php

@@ -42,10 +42,10 @@ {

/* in case of apc */ case 'apc': /* verify apc functions exist, apc ext is loaded */ - if (!function_exists('apc_cache_info')) + if (!function_exists('apc_sma_info')) return false; /* verify apc is working */ - if ( !apc_cache_info() ) + if ( !apc_sma_info() ) return false; $wp_ffpc_backend_status = true; break;