At line 274 in the nodepicker.module you use the wrong syntax for attributes:
$link = l($attr['link_text'], $attr['href'], array('title' => $attr['title'], 'class' => 'nodepicker-link'));

instead of

$link = l($attr['link_text'], $attr['href'], array('attributes' => array('title' => $attr['title'], 'class' => 'nodepicker-link')));

With your syntax no class and no title is written!

Comments

peter törnstrand’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

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