Passed
Push — master ( b1a542...9022ab )
by Greg
07:10
created
app/Http/Controllers/ListController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
                     'tree'      => $tree->name(),
167 167
                     'show_all' => 'yes',
168 168
                 ];
169
-                $show    = $request->getQueryParams()['show'] ?? 'surn';
169
+                $show = $request->getQueryParams()['show'] ?? 'surn';
170 170
             }
171 171
         } elseif ($surname) {
172 172
             $alpha    = $this->localization_service->initialLetter($surname); // so we can highlight the initial letter
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -240,7 +240,8 @@  discard block
 block discarded – undo
240 240
                     <li class="wt-initials-list-item d-flex">
241 241
                         <?php if ($count > 0) : ?>
242 242
                             <a href="<?= e(route('module', ['module' => $module, 'action' => $action, 'alpha' => $letter, 'tree' => $tree->name()])) ?>" class="wt-initial px-1<?= $letter === $alpha ? ' active' : '' ?> '" title="<?= I18N::number($count) ?>"><?= $this->surnameInitial((string) $letter) ?></a>
243
-                        <?php else : ?>
243
+                        <?php else {
244
+    : ?>
244 245
                             <span class="wt-initial px-1 text-muted"><?= $this->surnameInitial((string) $letter) ?></span>
245 246
 
246 247
                         <?php endif ?>
@@ -294,6 +295,7 @@  discard block
 block discarded – undo
294 295
 
295 296
             if ($show === 'indi' || $show === 'surn') {
296 297
                 $surns = $this->individual_list_service->surnames($surname, $alpha, $show_marnm === 'yes', $families, WT_LOCALE, I18N::collation());
298
+}
297 299
                 if ($show === 'surn') {
298 300
                     // Show the surname list
299 301
                     switch ($tree->getPreference('SURNAME_LIST_STYLE')) {
Please login to merge, or discard this patch.