From d7831e537c05fc5ddf1b026239fea2153d58104c Mon Sep 17 00:00:00 2001 From: miker Date: Thu, 15 Jul 2010 20:27:18 +0000 Subject: [PATCH] ARG! Missed a semicolon. Perl, be like JS and make them optional. On second thought do not be like JS in any way. git-svn-id: svn://svn.open-ils.org/ILS/trunk@16945 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm b/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm index 1e754a39e..e37968aa2 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm @@ -1353,7 +1353,7 @@ sub authority_tag_sf_startwith { my $limit = shift || 10; my $page = shift || 0; - my $offset = $limit * $page + my $offset = $limit * $page; my $_storage = OpenSRF::AppSession->create( 'open-ils.cstore' ); my @list = (); -- 2.11.0