Closed (fixed)
Project:
link node
Version:
5.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
12 Oct 2007 at 06:21 UTC
Updated:
10 Dec 2007 at 17:41 UTC
Jump to comment: Most recent file
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.
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | patch_172.txt | 395 bytes | TomChiverton |
Comments
Comment #1
TomChiverton commentedConfirmed.
link_node doesn't take into account the drupal root path, should be easy enough to fix.
Comment #2
TomChiverton commentedIf 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;
}
Comment #3
TomChiverton commentedOops, silly me... see attached
Comment #4
zoo33 commentedI'd say this patch solves this in a better way: #190788
Comment #5
TomChiverton commentedFixed by #190788
Comment #6
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.