Skip to content
Snippets Groups Projects
Commit d972b963 authored by Robert Douglass's avatar Robert Douglass
Browse files

critical error in the new memcache_admin code.

parent 2cff7e68
Branches
Tags 5.x-1.2
No related merge requests found
......@@ -8,13 +8,13 @@ function memcache_admin_menu($may_cache) {
$items[] = array(
'path' => 'admin/settings/memcache',
'callback' => 'memcache_admin_stats',
'title' => t('Memcache'),
'title' => t('Memcache administration'),
'access' => user_access('access memcache statistics'),
'description' => t("View the statistics for this site's memcache and generate new settings."),
);
}
else {
else if (arg(0) == 'admin' && arg(1) == 'settings' && arg(2) == 'memcache') {
$memache_servers = variable_get('memcache_servers', array());
$clusters = array();
foreach($memache_servers as $server => $cluster) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment