diff options
Diffstat (limited to 'modules/node.module')
-rw-r--r-- | modules/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node.module b/modules/node.module index 3ea1aa664..7ec3e4c1e 100644 --- a/modules/node.module +++ b/modules/node.module @@ -620,7 +620,7 @@ function node_link($type, $node = 0, $main = 0) { $links = array(); if ($type == 'node') { - if ($node->links) { + if (array_key_exists('links', $node)) { $links = $node->links; } |