diff options
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r-- | modules/system/system.api.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 2ae4fd384..8b9163e6e 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -1478,13 +1478,13 @@ function hook_menu_contextual_links_alter(&$links, $router_item, $root_path) { * * @code * // Node body. - * $page['content']['nodes'][$nid]['body'] + * $page['content']['system_main']['nodes'][$nid]['body'] * // Array of links attached to the node (add comments, read more). - * $page['content']['nodes'][$nid]['links'] + * $page['content']['system_main']['nodes'][$nid]['links'] * // The node object itself. - * $page['content']['nodes'][$nid]['#node'] + * $page['content']['system_main']['nodes'][$nid]['#node'] * // The results pager. - * $page['content']['pager'] + * $page['content']['system_main']['pager'] * @endcode * * Blocks may be referenced by their module/delta pair within a region: |