From: Michael J. Rubinsky Date: Sat, 14 Aug 2010 18:02:04 +0000 (-0400) Subject: Fix output of 'All' link in the alphaPager X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a8ec5e536e33d5a8ab5af1a5c8e00098694abc13;p=horde.git Fix output of 'All' link in the alphaPager --- diff --git a/turba/templates/list/alphaPager.inc b/turba/templates/list/alphaPager.inc index f96579e40..3bb7cfdd3 100644 --- a/turba/templates/list/alphaPager.inc +++ b/turba/templates/list/alphaPager.inc @@ -6,7 +6,7 @@ $currentPage = Horde_String::upper($page); if ($currentPage == '*') { echo '(' . _("All") . ') '; } else { - Horde::applicationUrl($viewurl)->add(array('page' => '*', 'show' => $show))->link() . _("All") . ' '; + echo Horde::applicationUrl($viewurl)->add(array('page' => '*', 'show' => $show))->link() . _("All") . ' '; } for ($i = 65; $i < 91; $i++) { $a = chr($i);