X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FElements%2FCollectionListPaging;h=b091170ed07400e55db6c6953a8e5161ab19c9c0;hp=8e6aebde7e619bc3cc90dbb1477cd60cf3861d7a;hb=7322f2afedcc2f427e997d1535a503613a83f088;hpb=7588a4ac90a9b07c08a3107cd1107d773be1c991 diff --git a/rt/share/html/Elements/CollectionListPaging b/rt/share/html/Elements/CollectionListPaging index 8e6aebde7..b091170ed 100644 --- a/rt/share/html/Elements/CollectionListPaging +++ b/rt/share/html/Elements/CollectionListPaging @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2013 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2016 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) {