Bugzilla – Attachment 50899 Details for
Bug 12721
Prevent software error if incorrect fieldnames given in sypref StatisticsFields
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 12721 - Prevent software error if incorrect fieldnames given in sypref StatisticsFields
PASSED-QA-Bug-12721---Prevent-software-error-if-in.patch (text/plain), 2.53 KB, created by
Katrin Fischer
on 2016-04-28 11:16:12 UTC
(
hide
)
Description:
[PASSED QA] Bug 12721 - Prevent software error if incorrect fieldnames given in sypref StatisticsFields
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2016-04-28 11:16:12 UTC
Size:
2.53 KB
patch
obsolete
>From a5a0365963369377bb27d2788b95217569776356 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Marc=20V=C3=A9ron?= <veron@veron.ch> >Date: Sun, 18 Oct 2015 16:28:52 +0200 >Subject: [PATCH] [PASSED QA] Bug 12721 - Prevent software error if incorrect > fieldnames given in sypref StatisticsFields > >To reproduce issue: >See comment #1 > >To test: >- Apply patch >- Leave syspref StatisticsFields empty >- Display statistics for an author > > => Result: Table displays Shelving location, Collection code, Item type > (as before) > >- Change syspref to any combination of location|itype|ccode > => Result: Table displays columns as appropriate > >- Change syspref to some garbage > => Result: Same as with empty syspref (was crashing without patch) > >- Change syspref to valid combination with trailing | > => Result: Table displays columns as appropriate (was crashing > without patch) > >- Change syspref to a combination of valid and invalid fields > (location|blah|ccode) > => Result: Table displays column of valid fields only (was crashing > without patch) > >Signed-off-by: Aleisha <aleishaamohia@hotmail.com> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > C4/Members/Statistics.pm | 31 ++++++++++++++++++++++++++----- > 1 file changed, 26 insertions(+), 5 deletions(-) > >diff --git a/C4/Members/Statistics.pm b/C4/Members/Statistics.pm >index 2dffd30..c491819 100644 >--- a/C4/Members/Statistics.pm >+++ b/C4/Members/Statistics.pm >@@ -43,13 +43,34 @@ BEGIN { > > our $fields = get_fields(); > >+ >+=head2 get_fields >+ Get fields form syspref 'StatisticsFields' >+ Returns list of valid fields, defaults to 'location|itype|ccode' >+ if syspref is empty or does not contain valid fields >+=cut >+ >+ > sub get_fields { >- my $r = C4::Context->preference('StatisticsFields') || 'location|itype|ccode'; >- unless ( $r =~ m/^(\w|\d|\||-)+$/) { >- warn "Members/Statistics : Bad value for syspref StatisticsFields" if $debug; >- $r = 'location|itype|ccode'; >+ >+ my $syspref = C4::Context->preference('StatisticsFields'); >+ my $ret; >+ >+ if ( $syspref ) { >+ my @ret; >+ my @spfields = split ('\|', $syspref); >+ my $dbh=C4::Context->dbh; >+ my $sth = $dbh->prepare('SHOW COLUMNS FROM items'); >+ $sth->execute; >+ my $dbfields = $sth->fetchall_hashref('Field'); >+ $sth->finish(); >+ >+ foreach my $fn ( @spfields ) { >+ push ( @ret, $fn ) if ( $dbfields->{ $fn } ); >+ } >+ $ret = join( '|', @ret); > } >- return $r; >+ return $ret || 'location|itype|ccode'; > } > > =head2 construct_query >-- >1.9.1
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 12721
:
43573
|
43575
|
44316
|
50622
|
50668
|
50669
|
50792
|
50855
|
50897
|
50898
| 50899 |
50900