Empty href attributes in OpenURL links
toastncheez - October 22, 2009 - 14:09
| Project: | Bibliography Module |
| Version: | 6.x-1.7 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
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.

#1
Good catch!
Thanks,
Ron.
(http://drupal.org/cvs?commit=278268)
#2
Automatically closed -- issue fixed for 2 weeks with no activity.