From 726c7673abd4a63209d1ad87232a367be6376caf Mon Sep 17 00:00:00 2001 From: creaoy Date: Fri, 5 Oct 2012 15:55:17 +0300 Subject: [PATCH] Issue #1804506 by creaoy: Make proper menu settings for authcache --- authcache.module | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/authcache.module b/authcache.module index 65b8158..613137a 100644 --- a/authcache.module +++ b/authcache.module @@ -55,8 +55,8 @@ function authcache_menu() { 'access arguments' => array('administer site configuration'), );*/ - $items['admin/config/development/performance/authcache/config'] = array( - 'title' => 'Configuration', + $items['admin/config/development/performance/performance'] = array( + 'title' => 'Performance', 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); @@ -71,7 +71,7 @@ function authcache_menu() { 'type' => MENU_LOCAL_TASK, 'weight' => 10, ); - $items['admin/config/development/performance/authcache/pagecaching'] = array( + $items['admin/config/development/performance/pagecaching'] = array( 'title' => 'Page caching settings', 'description' => "Configure page cache settings.", 'page callback' => 'drupal_get_form', @@ -81,7 +81,7 @@ function authcache_menu() { 'type' => MENU_LOCAL_TASK, 'weight' => 20, ); - $items['admin/config/development/performance/authcache/blocks'] = array( + $items['admin/config/development/performance/blocks'] = array( 'title' => 'Blocks', 'description' => "View Authcache blocks.", 'page callback' => 'drupal_get_form', -- 1.7.5.4