summaryrefslogtreecommitdiff
path: root/modules/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-06-18 18:00:13 +0000
committerDries Buytaert <dries@buytaert.net>2001-06-18 18:00:13 +0000
commit9f2eec079c5f7ed215d125d30f672e1573d02829 (patch)
tree66d514122613180560df9532c6baf37f55de1273 /modules/node.module
parent59176da94cd245e64f162ff0fc165aa7f3c8d460 (diff)
downloadbrdo-9f2eec079c5f7ed215d125d30f672e1573d02829.tar.gz
brdo-9f2eec079c5f7ed215d125d30f672e1573d02829.tar.bz2
- block.module:
+ renamed 'overview' to 'preview' as suggested by Kristjan. - meta.module: + renamed 'verify' to 'preview' to make it consistent with block.module. + fixed comma-bug with attribute list reported by Kristjan. - node.module: + fixed typo: "id$nid" should have been "id=$nid"
Diffstat (limited to 'modules/node.module')
-rw-r--r--modules/node.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node.module b/modules/node.module
index 3415a9fc2..8e600e867 100644
--- a/modules/node.module
+++ b/modules/node.module
@@ -68,7 +68,7 @@ function node_cron() {
function node_link($nid, $type) {
global $op;
- $link[] = ($op == "view") ? "view node" : "<A HREF=\"node.php?id$nid\">view node</A>";
+ $link[] = ($op == "view") ? "view node" : "<A HREF=\"node.php?id=$nid\">view node</A>";
$link[] = ($op == "content") ? "edit content" : "<A HREF=\"admin.php?mod=node&type=$type&op=content&id=$nid\">edit content</A>";
$link[] = ($op == "option") ? "edit options" : "<A HREF=\"admin.php?mod=node&op=option&id=$nid\">edit options</A>";
$link[] = ($op == "status") ? "edit status" : "<A HREF=\"admin.php?mod=node&op=status&id=$nid\">edit status</A>";