Bugzilla – Attachment 65212 Details for
Bug 18931
Add a "data corrupted" section on the about page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18931 - Follow up - Typo fix in SQL statement
Bug-18931---Follow-up---Typo-fix-in-SQL-statement.patch (text/plain), 1.34 KB, created by
Katrin Fischer
on 2017-07-24 21:27:39 UTC
(
hide
)
Description:
Bug 18931 - Follow up - Typo fix in SQL statement
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2017-07-24 21:27:39 UTC
Size:
1.34 KB
patch
obsolete
>From a50c2d355933ea1f8e7a5e2f96c8f185ebbc70df Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Mon, 24 Jul 2017 23:26:04 +0200 >Subject: [PATCH] Bug 18931 - Follow up - Typo fix in SQL statement > >Fixes the table alias in the SQL statement for items and >adds items to the if clause for showing data problems. >--- > about.pl | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/about.pl b/about.pl >index 1e7bd8f..5fcf94a 100755 >--- a/about.pl >+++ b/about.pl >@@ -297,7 +297,7 @@ if ( C4::Context->preference('WebBasedSelfCheck') > { Slice => {} } > ); > my $items = $dbh->selectall_arrayref( >- q|select i.itemnumber from items b join deleteditems di on i.itemnumber=di.itemnumber|, >+ q|select i.itemnumber from items i join deleteditems di on i.itemnumber=di.itemnumber|, > { Slice => {} } > ); > my $checkouts = $dbh->selectall_arrayref( >@@ -308,7 +308,7 @@ if ( C4::Context->preference('WebBasedSelfCheck') > q|select r.reserve_id from reserves r join old_reserves o on r.reserve_id=o.reserve_id|, > { Slice => {} } > ); >- if ( @$patrons or @$biblios or @$checkouts or @$holds ) { >+ if ( @$patrons or @$biblios or @$items or @$checkouts or @$holds ) { > $template->param( > has_ai_issues => 1, > ai_patrons => $patrons, >-- >2.7.4
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 18931
:
65010
|
65157
|
65188
|
65189
|
65209
|
65210
|
65211
|
65212
|
65255
|
65256
|
65257
|
65258
|
65259
|
65260
|
65266
|
65267
|
65299