Bugzilla – Attachment 19660 Details for
Bug 10590
in opac-topissues limit param is not protected
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 10590 - parameterise the limit option
Bug-10590---parameterise-the-limit-option.patch (text/plain), 1.44 KB, created by
Robin Sheat
on 2013-07-15 14:09:10 UTC
(
hide
)
Description:
Bug 10590 - parameterise the limit option
Filename:
MIME Type:
Creator:
Robin Sheat
Created:
2013-07-15 14:09:10 UTC
Size:
1.44 KB
patch
obsolete
>From 0401fa78cc42ae524c60148034e2185afd6a2102 Mon Sep 17 00:00:00 2001 >From: Robin Sheat <robin@catalyst.net.nz> >Date: Tue, 16 Jul 2013 02:06:40 +1200 >Subject: [PATCH] Bug 10590 - parameterise the limit option > >The limit option was previously substituted directly into the query. The >previous patch on bug 10590 filters it on input, but there's no reason >not to have it made to work properly in the query for added safety. >--- > opac/opac-topissues.pl | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/opac/opac-topissues.pl b/opac/opac-topissues.pl >index 41d7c84..96b0c8f 100755 >--- a/opac/opac-topissues.pl >+++ b/opac/opac-topissues.pl >@@ -82,7 +82,7 @@ if($advanced_search_types eq 'ccode'){ > GROUP BY biblio.biblionumber > HAVING tot >0 > ORDER BY tot DESC >- LIMIT $limit >+ LIMIT ? > "; > $template->param(ccodesearch => 1); > }else{ >@@ -107,13 +107,13 @@ if($advanced_search_types eq 'ccode'){ > GROUP BY biblio.biblionumber > HAVING tot >0 > ORDER BY tot DESC >- LIMIT $limit >+ LIMIT ? > "; > $template->param(itemtypesearch => 1); > } > > my $sth = $dbh->prepare($query); >-$sth->execute(); >+$sth->execute($limit); > my @results; > while (my $line= $sth->fetchrow_hashref) { > push @results, $line; >-- >1.8.1.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 10590
:
19646
|
19659
|
19660
|
19661
|
19662
|
19663
|
19664
|
19665
|
19666
|
19667
|
19668
|
19669
|
19670
|
19671