Project:Bibliography Module
Version:6.x-1.7
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:closed (fixed)

Issue Summary

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

#1

Status:active» fixed

Good catch!

Thanks,

Ron.

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

#2

Status:fixed» closed (fixed)

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