Skip to content
Snippets Groups Projects
Commit 9551bf08 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #63492 by zirafa: removed redundant semicolon.

parent 796145ad
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -238,7 +238,7 @@ function blog_view(&$node, $teaser = FALSE, $page = FALSE) {
$breadcrumb[] = array('path' => 'node/'. $node->nid);
menu_set_location($breadcrumb);
}
$node = node_prepare($node, $teaser);;
$node = node_prepare($node, $teaser);
}
/**
......
......@@ -238,7 +238,7 @@ function blog_view(&$node, $teaser = FALSE, $page = FALSE) {
$breadcrumb[] = array('path' => 'node/'. $node->nid);
menu_set_location($breadcrumb);
}
$node = node_prepare($node, $teaser);;
$node = node_prepare($node, $teaser);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment