X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FElements%2FCollectionListPaging;h=70af489a1bf7dbce52fff8cfbfbe41eba7ac62d6;hp=26c0823480962f21e76d51cf3d7756c9724485df;hb=187086c479a09629b7d180eec513fb7657f4e291;hpb=a6fe07e49e3fc12169e801b1ed6874c3a5bd8500 diff --git a/rt/share/html/Elements/CollectionListPaging b/rt/share/html/Elements/CollectionListPaging index 26c082348..70af489a1 100644 --- a/rt/share/html/Elements/CollectionListPaging +++ b/rt/share/html/Elements/CollectionListPaging @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2018 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -64,15 +64,15 @@ if ($Pages == 1) { else{ $m->out(loc('Page') . ' '); my $prev = $m->interp->apply_escapes($m->comp( - '/Elements/QueryString', - %$URLParams, - Page => ( $CurrentPage - 1 ) - ), 'h'); + '/Elements/QueryString', + %$URLParams, + Page => ( $CurrentPage - 1 ) + ), 'h'); my $next = $m->interp->apply_escapes($m->comp( - '/Elements/QueryString', - %$URLParams, - Page => ( $CurrentPage + 1 ) - ), 'h'); + '/Elements/QueryString', + %$URLParams, + Page => ( $CurrentPage + 1 ) + ), 'h'); my %show; $show{1} = 1; $show{$_} = 1 for (($CurrentPage - 2)..($CurrentPage + 2)); @@ -84,7 +84,7 @@ for my $number ( 1 .. $Pages ) { $dots = undef; my $qs = $m->interp->apply_escapes($m->comp( '/Elements/QueryString', %$URLParams, Page => $number ), 'h'); - $m->out(qq{}); + $m->out(qq{}); if ( $number == $CurrentPage ) { $m->out(qq{$number }); } @@ -96,7 +96,7 @@ for my $number ( 1 .. $Pages ) { $dots = 1; $m->out(qq{...}); } - $m->out(qq{}); + $m->out(qq{}); } if ($CurrentPage > 1) {