From bacb602b808e43e1793e29fd0506a121344b66d6 Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Tue, 28 Apr 2020 12:06:50 -0400 Subject: [PATCH] Breadcrumb roles. --- themes/bootstrap3/templates/breadcrumbs/default.phtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/bootstrap3/templates/breadcrumbs/default.phtml b/themes/bootstrap3/templates/breadcrumbs/default.phtml index 715f23a1b15..baf8e259b68 100644 --- a/themes/bootstrap3/templates/breadcrumbs/default.phtml +++ b/themes/bootstrap3/templates/breadcrumbs/default.phtml @@ -5,7 +5,7 @@ <?php endforeach; ?> <?php if(isset($this->layout()->end)): ?> <li title="<?=$this->layout()->title ?>"><?=$this->truncate($this->layout()->title, 100) ?></li> - <li class="active"><?=$this->layout()->end ?></li> + <li class="active" aria-current="page"><?=$this->layout()->end ?></li> <?php else: ?> - <li class="active" title="<?=$this->layout()->title ?>"><?=$this->truncate($this->layout()->title, 100) ?></li> + <li class="active" aria-current="page" title="<?=$this->layout()->title ?>"><?=$this->truncate($this->layout()->title, 100) ?></li> <?php endif; ?> -- GitLab