diff options
-rw-r--r-- | modules/node.module | 3 | ||||
-rw-r--r-- | modules/node/node.module | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/modules/node.module b/modules/node.module index c1e2283d5..f9b570bf8 100644 --- a/modules/node.module +++ b/modules/node.module @@ -76,6 +76,9 @@ function node_link($type, $node = 0) { } if ($type == "node") { + if ($node->links) { + $links = $node->links; + } if ($node->body) { $links[] = "<a href=\"node.php?id=". $node->nid ."\">". t("read more") ."</a>"; } diff --git a/modules/node/node.module b/modules/node/node.module index c1e2283d5..f9b570bf8 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -76,6 +76,9 @@ function node_link($type, $node = 0) { } if ($type == "node") { + if ($node->links) { + $links = $node->links; + } if ($node->body) { $links[] = "<a href=\"node.php?id=". $node->nid ."\">". t("read more") ."</a>"; } |