Bugzilla – Attachment 130738 Details for
Bug 18618
Mana - Add reading suggestions (crontab and scripts for Koha)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18618: Correct Plack issues
Bug-18618-Correct-Plack-issues.patch (text/plain), 1.04 KB, created by
Marion Durand
on 2022-02-17 13:22:36 UTC
(
hide
)
Description:
Bug 18618: Correct Plack issues
Filename:
MIME Type:
Creator:
Marion Durand
Created:
2022-02-17 13:22:36 UTC
Size:
1.04 KB
patch
obsolete
>From 4156da894d9f2647f1b892ad56834a912a4f77a8 Mon Sep 17 00:00:00 2001 >From: Baptiste Wojtkowski <baptiste.wojtkowski@biblibre.com> >Date: Wed, 28 Jun 2017 15:35:11 +0000 >Subject: [PATCH] Bug 18618: Correct Plack issues > >Split one command line into two in order to be accepted by Plack >--- > opac/svc/mana/getSuggestion | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/opac/svc/mana/getSuggestion b/opac/svc/mana/getSuggestion >index 682b867f3b..9c33985ac6 100755 >--- a/opac/svc/mana/getSuggestion >+++ b/opac/svc/mana/getSuggestion >@@ -74,7 +74,8 @@ if ( $local_suggestions and DateTime::Duration->compare( ($now - $timestamp), DU > delete $local_suggestions->{timestamp}; > delete $local_suggestions->{biblionumber}; > foreach my $key ( sort keys %{ $local_suggestions }){ >- push @biblios, Koha::Biblios->find( $local_suggestions->{ $key } ); >+ my $biblio = Koha::Biblios->find( $local_suggestions->{ $key } ); >+ push @biblios, $biblio->unblessed() if $biblio; > } > } > >-- >2.17.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 18618
:
63496
|
63497
|
64531
|
64960
|
65066
|
65067
|
65068
|
65069
|
65070
|
130706
|
130707
|
130708
|
130709
|
130710
|
130711
|
130712
|
130713
|
130714
|
130715
|
130735
|
130736
|
130737
|
130738
|
130739
|
130740
|
130741
|
130742
|
130743
|
130744
|
132690
|
132691