X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=rt%2Fshare%2Fhtml%2FElements%2FCollectionListPaging;h=48d63c31ff13f8ca9c7ffb6270d5d59aa45c2260;hb=a9aa4d83ae52cfece965cd8f175a29394938f76a;hp=26c0823480962f21e76d51cf3d7756c9724485df;hpb=a6fe07e49e3fc12169e801b1ed6874c3a5bd8500;p=freeside.git diff --git a/rt/share/html/Elements/CollectionListPaging b/rt/share/html/Elements/CollectionListPaging index 26c082348..48d63c31f 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-2017 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) {