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
@@ -26,6 +26,7 @@ function blog_user_view($account) {
$account->content['summary']['blog']=array(
'#type'=>'user_profile_item',
'#title'=>t('Blog'),
// l() escapes the attributes, so we should not escape !username here.
'#markup'=>l(t('View recent blog entries'),"blog/$account->uid",array('attributes'=>array('title'=>t("Read !username's latest blog entries.",array('!username'=>format_username($account)))))),
'#attributes'=>array('class'=>array('blog')),
);
...
...
@@ -67,7 +68,7 @@ function blog_form($node, $form_state) {
*/
functionblog_view($node,$view_mode){
if($view_mode=='full'&&node_is_page($node)){
// Breadcrumb navigation.
// Breadcrumb navigation. l() escapes title, so we should not escape !name.