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

bjcool’s picture

Title: Typo in HTML in xxx() » Typo in HTML in _biblio_filter_replace_callback()
rjerome’s picture

Status: Active » Fixed

Thanks,

That's been fixed now.

Ron.

bjcool’s picture

Status: Fixed » Closed (fixed)

Reviewed the fix. Thx!

Closing the bug now.