From 06c75cefdc386d119ec74942b5077bf779e0cc62 Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Thu, 12 Mar 2015 09:47:17 -0400 Subject: [PATCH] Fix of syntax in myresearch/menu. Closes VUFIND-1097. --- themes/bootstrap3/templates/myresearch/menu.phtml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/themes/bootstrap3/templates/myresearch/menu.phtml b/themes/bootstrap3/templates/myresearch/menu.phtml index 41daba3c915..089db75f3bf 100644 --- a/themes/bootstrap3/templates/myresearch/menu.phtml +++ b/themes/bootstrap3/templates/myresearch/menu.phtml @@ -1,5 +1,5 @@ <h4><?=$this->transEsc('Your Account')?></h4> -<ul class="list-group"> +<div class="list-group"> <? if ($this->userlist()->getMode() !== 'disabled'): ?> <a href="<?=$this->url('myresearch-favorites')?>" class="list-group-item<?=$this->active == 'favorites' ? ' active' : ''?>"> <?=$this->transEsc('Favorites')?> @@ -54,19 +54,19 @@ <span class="pull-right"><i class="fa fa-sign-out"></i></span> </a> <? endif; ?> -</ul> +</div> <? if ($this->auth()->isLoggedIn() && $this->auth()->getManager()->supportsPasswordChange()): ?> <h4><?=$this->transEsc('Preferences')?></h4> - <ul class="list-group"> + <div class="list-group"> <a href="<?=$this->url('myresearch-changepassword') ?>" class="list-group-item<?=$this->active == 'newpassword' ? ' active' : ''?>"> <?=$this->transEsc('Change Password') ?> <span class="pull-right"><i class="fa fa-lock"></i></span> </a> - </ul> + </div> <? endif; ?> <? if ($this->userlist()->getMode() !== 'disabled' && $user = $this->auth()->isLoggedIn()): ?> <h4><?=$this->transEsc('Your Lists')?></h4> - <ul class="list-group"> + <div class="list-group"> <a href="<?=$this->url('myresearch-favorites')?>" class="list-group-item<?=$this->active == 'favorites' ? ' active' : ''?>"> <?=$this->transEsc('Your Favorites')?> <span class="pull-right"><i class="fa fa-star"></i></span> @@ -82,5 +82,5 @@ <?=$this->transEsc('Create a List') ?> <span class="pull-right"><i class="fa fa-plus"></i></span> </a> - </ul> + </div> <? endif ?> -- GitLab