HI,
My local drupal installation is in http://localhost/drupal/
I've created a node link [node:1]
When I click on the URL it redirects me to http://localhost/node/1.

CommentFileSizeAuthor
#3 patch_172.txt395 bytesTomChiverton

Comments

TomChiverton’s picture

Assigned: Unassigned » TomChiverton

Confirmed.
link_node doesn't take into account the drupal root path, should be easy enough to fix.

TomChiverton’s picture

Status: Active » Needs review

If you can, try this patch:
--- /home/falken/link_node-drupal-cvs/contributions/modules/link_node/link_node.module 2007-10-11 23:42:16.000000000 +0100
+++ link_node.module 2007-10-13 16:55:12.000000000 +0100
@@ -195,7 +195,7 @@
}
}

- $output = "nid."\">".$node->title."";
+ $output = "nid."\">".$node->title."";

return $output;
}

TomChiverton’s picture

StatusFileSize
new395 bytes

Oops, silly me... see attached

zoo33’s picture

I'd say this patch solves this in a better way: #190788

TomChiverton’s picture

Status: Needs review » Fixed

Fixed by #190788

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.