First of all, great submission:
Line 86 of uc_rec.module generates a bogus link. The preceding slash makes the l() function put http:// in front of the node number.
It currently reads:
return l($node->title, "/node/{$node->nid}");
And, should read:
return l($node->title, "node/{$node->nid}");
Once this change is made, the l() function properly grabs the node name, the alias, and makes the correct link. Otherwise, it produces links like:
Thank you!
Comments
Comment #1
tdmarsol commentedComment #2
danithaca commentedthanks for the report. bug will be fixed in the next release, which will be available very soon.
Comment #3
danithaca commentedfixed. thanks for the report. please download the latest version.