# This patch can be applied using context Tools: Patch action on respective folder.
# It uses platform neutral UTF-8 encoding and \n newlines.
# Above lines and this line are ignored by the patching process.
Index: memcache_admin.module
--- memcache_admin.module Base (BASE)
+++ memcache_admin.module Locally Modified (Based On LOCAL)
@@ -69,6 +69,19 @@
         'access arguments' => array('access memcache statistics'),
         'weight' => $count,
       );
+
+      /* Add default menu behave */
+      if( $count == 0 ) {
+        $items['admin/reports/memcache' ] = array(
+            'title' => $cluster,
+            'type' => MENU_NORMAL_ITEM,
+            'page callback' => 'memcache_admin_stats',
+            'page arguments' => array($cluster),
+            'access arguments' => array('access memcache statistics'),
+            'weight' => $count,
+        );
+      }
+
       $count++;
 
       $sub_count = 0;
