Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix syntax error in paging subroutine.
  • Loading branch information
racke committed Sep 26, 2013
1 parent 8744682 commit f5e7c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/paging.sub
Expand Up @@ -78,7 +78,7 @@ sub {
last => 'last',
);

for my $anchor qw(first prev next last) {
for my $anchor (qw(first prev next last)) {
if ($r =~ s:\[$anchor[-_]anchor\](.*?)\[/$anchor[-_]anchor\]::i) {
$anchor_labels{$anchor} = $1;

Expand Down

0 comments on commit f5e7c1f

Please sign in to comment.