From c9d260e86576d92cb8a6603fe8d583ecddc65e0f Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Wed, 19 Feb 2014 11:10:22 -0500 Subject: [PATCH] Show saved lists when there isn't a description. Bootstrap. --- .../templates/RecordDriver/SolrDefault/core.phtml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/themes/bootstrap/templates/RecordDriver/SolrDefault/core.phtml b/themes/bootstrap/templates/RecordDriver/SolrDefault/core.phtml index 31192684940..b34c876abb5 100644 --- a/themes/bootstrap/templates/RecordDriver/SolrDefault/core.phtml +++ b/themes/bootstrap/templates/RecordDriver/SolrDefault/core.phtml @@ -29,17 +29,17 @@ <? $summary = $this->driver->getSummary(); $summary = isset($summary[0]) ? $summary[0] : false; ?> <? if ($summary): ?> <p><?=$this->truncate($summary, 300)?></p> - - <? /* Display the lists that this record is saved to */ ?> - <div class="savedLists hide alert alert-info" id="savedLists"> - <strong><?=$this->transEsc("Saved in")?>:</strong> - </div> <? if(strlen($summary) > 300): ?> <p><a href='<?=$this->recordLink()->getTabUrl($this->driver, 'Description')?>#tabnav'><?=$this->transEsc('Full description')?></a></p> <? endif; ?> <? endif; ?> + <? /* Display the lists that this record is saved to */ ?> + <div class="savedLists hide alert alert-info" id="savedLists"> + <strong><?=$this->transEsc("Saved in")?>:</strong> + </div> + <?/* Display Main Details */?> <table class="table table-striped" summary="<?=$this->transEsc('Bibliographic Details')?>"> <? $journalTitle = $this->driver->getContainerTitle(); if (!empty($journalTitle)): ?> -- GitLab