OpenURL links are created with empty href attributes: seems to be a missing not-flag in biblio_theme.inc:biblio_openURL. Changing:

if (empty($openURLResolver)) {
    $co = biblio_contextObject($node);
    ...

to

  if (!empty($openURLResolver)) {
    $co = biblio_contextObject($node);

... corrects the problem.

Comments

rjerome’s picture

Status: Active » Fixed

Good catch!

Thanks,

Ron.

(http://drupal.org/cvs?commit=278268)

Status: Fixed » Closed (fixed)

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