diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module index 1a3580f..8b6fe33 100644 --- a/core/modules/comment/comment.module +++ b/core/modules/comment/comment.module @@ -296,6 +296,17 @@ function comment_menu() { 'access arguments' => array('view', 2), 'file' => 'comment.pages.inc', ); + $items['comment/reply/%node/%'] = array( + 'page arguments' => array(2, 3), + ) + $items['comment/reply/%node']; + $items['node/%node/%'] = array( + 'title callback' => 'node_page_title', + 'title arguments' => array(1), + 'page callback' => 'node_page_view', + 'page arguments' => array(1, 2), + 'access callback' => 'node_access', + 'access arguments' => array('view', 1), + ); return $items; } diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 151d299..17bbdd7 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -604,6 +604,9 @@ function system_menu() { 'type' => MENU_CALLBACK, 'file' => 'system.admin.inc', ); + $items['admin/compact/%'] = array( + 'page arguments' => array(2), + ) + $items['admin/compact']; $items['admin/tasks'] = array( 'title' => 'Tasks', 'type' => MENU_DEFAULT_LOCAL_TASK, @@ -1000,6 +1003,9 @@ function system_menu() { 'type' => MENU_VISIBLE_IN_BREADCRUMB, 'file' => 'system.admin.inc', ); + $items['admin/config/system/actions/configure/%'] = array( + 'page arguments' => array('system_actions_configure', 5), + ) + $items['admin/config/system/actions/configure']; $items['admin/config/system/actions/delete/%actions'] = array( 'title' => 'Delete action', 'description' => 'Delete an action.', diff --git a/core/modules/user/user.module b/core/modules/user/user.module index 865f17b..abc274f 100644 --- a/core/modules/user/user.module +++ b/core/modules/user/user.module @@ -1705,6 +1705,10 @@ function user_menu() { 'file' => 'user.admin.inc', 'type' => MENU_LOCAL_TASK, ); + $items['admin/people/permissions/%'] = array( + 'page arguments' => array('user_admin_permissions', 3), + 'type' => MENU_CALLBACK, + ) + $items['admin/people/permissions']; $items['admin/people/permissions/list'] = array( 'title' => 'Permissions', 'description' => 'Determine access to features by selecting permissions for roles.',