diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/block.module | 8 | ||||
-rw-r--r-- | modules/block/block.module | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/modules/block.module b/modules/block.module index 38835cabe..5ec29cc73 100644 --- a/modules/block.module +++ b/modules/block.module @@ -51,10 +51,10 @@ function block_link($type) { if ($type == "admin" && user_access("administer blocks")) { $help["block"] = "Blocks are the boxes visible in the side bars on the left- and right-hand side of the website. They are either exported by the Drupal or by any of the active modules. Adminstrators can enable or disable block, as well control the block placement by assigning them a region and/or by assigning each block (within a region) a weight to sort them vertically. The path setting lets you define which pages you want the specific blocks to be shown."; - menu("admin/block", "block management", block_admin, $help["block"], 3); - menu("admin/block/add", "create new block", block_admin, $help["block"], 2); - menu("admin/block/preview", "preview placement", block_admin, $help["block"], 3); - menu("admin/block/help", "help", block_help, NULL, 9); + menu("admin/block", "block management", "block_admin", $help["block"], 3); + menu("admin/block/add", "create new block", "block_admin", $help["block"], 2); + menu("admin/block/preview", "preview placement", "block_admin", $help["block"], 3); + menu("admin/block/help", "help", "block_help", NULL, 9); } } diff --git a/modules/block/block.module b/modules/block/block.module index 38835cabe..5ec29cc73 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -51,10 +51,10 @@ function block_link($type) { if ($type == "admin" && user_access("administer blocks")) { $help["block"] = "Blocks are the boxes visible in the side bars on the left- and right-hand side of the website. They are either exported by the Drupal or by any of the active modules. Adminstrators can enable or disable block, as well control the block placement by assigning them a region and/or by assigning each block (within a region) a weight to sort them vertically. The path setting lets you define which pages you want the specific blocks to be shown."; - menu("admin/block", "block management", block_admin, $help["block"], 3); - menu("admin/block/add", "create new block", block_admin, $help["block"], 2); - menu("admin/block/preview", "preview placement", block_admin, $help["block"], 3); - menu("admin/block/help", "help", block_help, NULL, 9); + menu("admin/block", "block management", "block_admin", $help["block"], 3); + menu("admin/block/add", "create new block", "block_admin", $help["block"], 2); + menu("admin/block/preview", "preview placement", "block_admin", $help["block"], 3); + menu("admin/block/help", "help", "block_help", NULL, 9); } } |