Enotice fixes on ContributionPage dash
authorEileen McNaughton <emcnaughton@wikimedia.org>
Tue, 21 Dec 2021 21:09:13 +0000 (10:09 +1300)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Tue, 21 Dec 2021 21:10:06 +0000 (10:10 +1300)
CRM/Utils/PagerAToZ.php
templates/CRM/common/pagerAToZ.tpl

index 650dd715e35cc3175eea05658729bd4d27daa9a8..2faefae7860064dce16e3f167862cf54621fb2f5 100644 (file)
@@ -145,7 +145,7 @@ class CRM_Utils_PagerAToZ {
         continue;
       }
 
-      $element = [];
+      $element = ['class' => ''];
       if (in_array($link, $dynamicAlphabets)) {
         $klass = '';
         if ($link == $sortByCharacter) {
@@ -186,7 +186,7 @@ class CRM_Utils_PagerAToZ {
       ),
       ts('All')
     );
-    $aToZBar[] = ['item' => $url];
+    $aToZBar[] = ['item' => $url, 'class' => ''];
     return $aToZBar;
   }
 
index a24a8f92a45529b68c208d84226a26b7e8a521c6..c4a4b9323c86c99a77f85df0c2dbc482cd629e58 100644 (file)
@@ -11,7 +11,7 @@
 <div id="alpha-filter">
     <ul>
     {foreach from=$aToZ item=letter}
-        <li {if !empty($letter.class)}class="{$letter.class}"{/if}>{$letter.item}</li>
+        <li {if $letter.class}class="{$letter.class}"{/if}>{$letter.item}</li>
     {/foreach}
     </ul>
 </div>