From 6bc79267fbc9e0a14bb4837d73e14fd24de5bba4 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Wed, 7 Aug 2013 10:40:55 -0400 Subject: [PATCH] Style fix. --- .../VuFind/src/VuFind/Controller/AlphabrowseController.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/module/VuFind/src/VuFind/Controller/AlphabrowseController.php b/module/VuFind/src/VuFind/Controller/AlphabrowseController.php index 702e7bba5c9..54b7eab7d33 100644 --- a/module/VuFind/src/VuFind/Controller/AlphabrowseController.php +++ b/module/VuFind/src/VuFind/Controller/AlphabrowseController.php @@ -101,13 +101,15 @@ class AlphabrowseController extends AbstractBase // If required parameters are present, load results: if ($source && $from !== false) { // Load Solr data or die trying: - $result = $db->alphabeticBrowse($source, $from, $page, $limit, $extraParams); + $result = $db + ->alphabeticBrowse($source, $from, $page, $limit, $extraParams); // No results? Try the previous page just in case we've gone past // the end of the list.... if ($result['Browse']['totalCount'] == 0) { $page--; - $result = $db->alphabeticBrowse($source, $from, $page, $limit, $extraParams); + $result = $db + ->alphabeticBrowse($source, $from, $page, $limit, $extraParams); } // Only display next/previous page links when applicable: -- GitLab