[open-ils-commits] r16945 - trunk/Open-ILS/src/perlmods/OpenILS/Application (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Jul 15 16:27:23 EDT 2010
Author: miker
Date: 2010-07-15 16:27:18 -0400 (Thu, 15 Jul 2010)
New Revision: 16945
Modified:
trunk/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm
Log:
ARG! Missed a semicolon. Perl, be like JS and make them optional. On second thought do not be like JS in any way.
Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm 2010-07-15 20:17:20 UTC (rev 16944)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm 2010-07-15 20:27:18 UTC (rev 16945)
@@ -1353,7 +1353,7 @@
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 = ();
More information about the open-ils-commits
mailing list