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
Comment #1
peter törnstrand commentedFixed. Commit message