Closed (fixed)
Project:
Bibliography Module
Version:
6.x-1.7
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
22 Oct 2009 at 14:09 UTC
Updated:
23 Oct 2014 at 20:26 UTC
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
Comment #1
rjerome commentedGood catch!
Thanks,
Ron.
(http://drupal.org/cvs?commit=278268)