Skip to content
Snippets Groups Projects

Issue #2404675: allow the ->biblio_abst_e field to have simple HTML tags and...

2 files
+ 8
6
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -172,7 +172,7 @@ function theme_biblio_long($variables) {
$output .= '<h3>' . t("Keywords") . ':</h3> ' . _biblio_keyword_links($node->biblio_keywords) . "\n";
}
if ($node->biblio_abst_e) {
$output .= '<h3>' . t("Abstract") . ':</h3> ' . check_markup($node->biblio_abst_e) . "\n";
$output .= '<h3>' . t("Abstract") . ':</h3> ' . check_markup($node->biblio_abst_e, 'filtered_html') . "\n";
}
if ($node->biblio_abst_f) {
$output .= '<p>' . check_markup($node->biblio_abst_f) . "\n";
Loading