Bugzilla – Attachment 12950 Details for
Bug 7973
Allow for new type of LDAP authentication
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
This patch aims to correct the LDAP bind authentication.
Bug-1963-Problem-with-deleted-biblio-in-a-virtual-.patch (text/plain), 1.73 KB, created by
Rolando Isidoro
on 2012-10-19 14:05:11 UTC
(
hide
)
Description:
This patch aims to correct the LDAP bind authentication.
Filename:
MIME Type:
Creator:
Rolando Isidoro
Created:
2012-10-19 14:05:11 UTC
Size:
1.73 KB
patch
obsolete
>From 7287977961732c7e30a7cb416e9aaca1b96a7030 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Demians?= <f.demians@tamil.fr> >Date: Fri, 5 Oct 2012 10:45:18 +0200 >Subject: [PATCH] Bug 1963 Problem with deleted biblio in a virtual shelf >Content-Type: text/plain; charset="utf-8" > >This bug reappear in HEAD/3.8. When trying to display a virtual shelf >(list) containing a deleted biblio, this error message is displayed: > >Software error: > >Can't call method "field" on an undefined value at ....C4/Koha.pm line >1231. > >This fix modify SQL query retrieving biblios, just skipping records from >virtual shelf table with no linked record in biblio table: LEFT JOIN >replace with JOIN. > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >Signed-off-by: Paul Poulain <paul.poulain@biblibre.com> > >http://bugs.koha-community.org/show_bug.cgi?id=7973 >--- > C4/VirtualShelves.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/VirtualShelves.pm b/C4/VirtualShelves.pm >index 8c0b15e..90a00a5 100644 >--- a/C4/VirtualShelves.pm >+++ b/C4/VirtualShelves.pm >@@ -267,7 +267,7 @@ sub GetShelfContents { > " SELECT vc.biblionumber, vc.shelfnumber, vc.dateadded, itemtypes.*, > biblio.*, biblioitems.itemtype, biblioitems.publicationyear as year, biblioitems.publishercode, biblioitems.place, biblioitems.size, biblioitems.pages > FROM virtualshelfcontents vc >- LEFT JOIN biblio ON vc.biblionumber = biblio.biblionumber >+ JOIN biblio ON vc.biblionumber = biblio.biblionumber > LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber > LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype > WHERE vc.shelfnumber=? "; >-- >1.7.9.5
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 7973
:
9233
|
12950
|
12955
|
14775
|
16580
|
16686
|
16703
|
16704
|
20821