Closed (fixed)
Project:
Bibliography Module
Version:
6.x-1.2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Apr 2009 at 12:11 UTC
Updated:
28 Apr 2009 at 09:16 UTC
In _biblio_filter_replace_callback() the line
$str = '<p><hr /><p><h3>'. t('References') .'</h3></p>';
produces invalid HTML. Is
$str = '<p><hr /></p><h3>'. t('References') .'</h3>';
or
$str = '<p><hr /></p><p><h3>'. t('References') .'</h3></p>';
or
the intended code?
Comments
Comment #1
bjcool commentedComment #2
rjerome commentedThanks,
That's been fixed now.
Ron.
Comment #3
bjcool commentedReviewed the fix. Thx!
Closing the bug now.