It seems like the urls for a node title isnt correct when its formatted.
It takes the positive value from $conf['link'] so all the links are set to 1
this should do the trick in node_content.inc line 76

if (!empty($conf['link']) && $node) {
    $block->title_link =  "node/$node->nid";
}

Comments

mortendk’s picture

Title: node contex title url -$conf['link'] » node title url set to 1
merlinofchaos’s picture

Status: Active » Fixed

Committed! Thanks for the catch!

mortendk’s picture

Version: 5.x-2.0-beta1 » 5.x-2.0-beta2

hmm in beta 2 theres a slight typo ... $nide
$block->title_link = "node/$nide->nid";
should be
$block->title_link = "node/$node->nid";

cheers

kdebaas’s picture

Title: node title url set to 1 » Typo in node_content.inc
Status: Fixed » Active
kdebaas’s picture

Status: Active » Fixed

Fixed in 5.x-2.0-dev

Anonymous’s picture

Status: Fixed » Closed (fixed)

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