Closed (fixed)
Project:
Bibliography Module
Version:
6.x-1.5
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Jul 2009 at 17:02 UTC
Updated:
23 Jul 2009 at 20:40 UTC
Hello,
This is minor, but in the MLA style file, biblio_style_mla.inc, I think there's an incorrect reference to 'year' data. The result is that when viewing a list or other output using MLA style, entries do not show years.
Here's the original, starting on line 467:
if (!empty($node->year)) { // year
$output .= ", ".$node->year;
}
And the fix:
if (!empty($node->biblio_year)) { // year
$output .= ", ".$node->biblio_year;
}
Comments
Comment #1
rjerome commentedYou are quite right, thank's for pointing that out.
I just committed the fix, the -dev and releases subsequent to 6.x-1.5 will contain it.
(http://drupal.org/cvs?commit=235440)
Ron.