Bugzilla – Attachment 140148 Details for
Bug 30462
Improve the default display for the background jobs queue management page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30462: Fix display of the complete jobs
Bug-30462-Fix-display-of-the-complete-jobs.patch (text/plain), 1.35 KB, created by
Kyle M Hall (khall)
on 2022-09-02 13:56:15 UTC
(
hide
)
Description:
Bug 30462: Fix display of the complete jobs
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2022-09-02 13:56:15 UTC
Size:
1.35 KB
patch
obsolete
>From 09a6caf80de9c668a358d67585b67eac68c7ccbc Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 13 Jun 2022 11:34:21 +0200 >Subject: [PATCH] Bug 30462: Fix display of the complete jobs > >We want to display the jobs terminated in the last hour, not today. > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > admin/background_jobs.pl | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/admin/background_jobs.pl b/admin/background_jobs.pl >index cccb3bba57..761c09d069 100755 >--- a/admin/background_jobs.pl >+++ b/admin/background_jobs.pl >@@ -96,14 +96,14 @@ if ( $op eq 'list' ) { > $can_manage_background_jobs > ? Koha::BackgroundJobs->search( > { >- ended_on => { '>=' => $dtf->format_date($ended_since) } >+ ended_on => { '>=' => $dtf->format_datetime($ended_since) } > }, > { order_by => { -desc => 'enqueued_on' } } > ) > : Koha::BackgroundJobs->search( > { > borrowernumber => $logged_in_user->borrowernumber, >- ended_on => { '>=' => $dtf->format_date($ended_since) } >+ ended_on => { '>=' => $dtf->format_datetime($ended_since) } > }, > { order_by => { -desc => 'enqueued_on' } } > ); >-- >2.30.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 30462
:
135570
|
135583
|
135749
|
135750
|
135938
|
136001
|
136002
|
136003
|
136004
|
140145
|
140146
|
140147
| 140148 |
140353
|
142860