[Koha-patches] [PATCH] Bug 4333 Fix erroneous message re Active Currency

2010-04-30 Thread Colin Campbell
Script was incorrectly asking user to define an active currency Now test for active currency in the standard way Use the currency routines in Budgets where applicable Move the code paths in the if else to subroutines to clarify flow Enable warnings --- admin/currency.pl | 257

[Koha-patches] [PATCH] Bug 4333 Fix erroneous message re Active Currency

2010-04-30 Thread Colin Campbell
Script was incorrectly asking user to define an active currency Now test for active currency in the standard way Use the currency routines in Budgets where applicable Move the code paths in the if else to subroutines to clarify flow Enable warnings --- admin/currency.pl | 258

[Koha-patches] [PATCH] bug 4333 followup - fix an uninitialized value warning

2010-04-30 Thread Galen Charlton
Signed-off-by: Galen Charlton gmcha...@gmail.com --- admin/currency.pl |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/admin/currency.pl b/admin/currency.pl index 003ff89..1e3f160 100755 --- a/admin/currency.pl +++ b/admin/currency.pl @@ -181,9 +181,6 @@ sub

[Koha-patches] [PATCH] bug 4256: fix patron replication when using LDAP with auth_by_bind

2010-04-30 Thread Galen Charlton
Patch compiled from diffs created by Dobrica Pavlinušić dpav...@rot13.org to: * enable patron replication when using LDAP with auth_by_bind * not scribble over extended patron attributes * fix failure logging in to OPAC if patron has no extended attributes Signed-off-by: Galen Charlton

[Koha-patches] [PATCH 1/2] fix typo in DBrev - should be 3.01.00.129

2010-04-30 Thread Galen Charlton
Signed-off-by: Galen Charlton gmcha...@gmail.com --- installer/data/mysql/updatedatabase.pl |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 908bb7c..778319f 100755 ---

[Koha-patches] [PATCH 2/2] bug 1532: ensure that empty hold request expiration is represented as NULL

2010-04-30 Thread Galen Charlton
Fixes bug reported by Colin Campbell where reserves.expiratedate was defaulting to '-00-00' instead of NULL. Signed-off-by: Galen Charlton gmcha...@gmail.com --- C4/Reserves.pm |6 +- installer/data/mysql/updatedatabase.pl |6 ++ kohaversion.pl

[Koha-patches] [PATCH 01/12] MT3440: Display only borrower's messages in borrower's profile

2010-04-30 Thread Henri-Damien LAURENT
From: Matthias Meusburger matthias.meusbur...@biblibre.com --- members/notices.pl |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/members/notices.pl b/members/notices.pl index dea577e..fb8e91b 100755 --- a/members/notices.pl +++ b/members/notices.pl @@ -50,7 +50,7 @@ my

[Koha-patches] [PATCH 02/12] MT3448 : searchauthorities problems

2010-04-30 Thread Henri-Damien LAURENT
From: Paul Poulain paul.poul...@biblibre.com Problems with searching authorities : The same index was always used --- authorities/auth_finder.pl |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/authorities/auth_finder.pl b/authorities/auth_finder.pl index

[Koha-patches] [PATCH 03/12] MT3499 : cataloguing authid not reported

2010-04-30 Thread Henri-Damien LAURENT
authid would not be correctly updated in bibliorecord. Biblio record would not receive the correct authid in subfield 9 but some erroneous data --- .../authorities/blinddetail-biblio-search.tmpl |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git

[Koha-patches] [PATCH 06/12] Transport_type print missing

2010-04-30 Thread Henri-Damien LAURENT
This type is quite important for all the print notices --- .../mysql/en/mandatory/message_transport_types.sql |3 ++- .../1-Obligatoire/message_transport_types.sql |1 + installer/data/mysql/updatedatabase.pl | 10 ++ kohaversion.pl

[Koha-patches] [PATCH 08/12] Performance enhancing : C4/Languages.pm

2010-04-30 Thread Henri-Damien LAURENT
removing a call unused to getAllLanguages Doing better job at enabled languages --- C4/Languages.pm | 72 ++ 1 files changed, 24 insertions(+), 48 deletions(-) diff --git a/C4/Languages.pm b/C4/Languages.pm index 9ef2439..7e3b0d5 100644 ---

[Koha-patches] [PATCH 09/12] Performance enhancing DBRev:132

2010-04-30 Thread Henri-Damien LAURENT
Adding an index on language_descriptions table in order to boost searches --- installer/data/mysql/updatedatabase.pl | 10 ++ kohaversion.pl |2 +- 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl

[Koha-patches] [PATCH 10/12] (MT #3081) permit loans for today

2010-04-30 Thread Henri-Damien LAURENT
From: Nahuel ANGELINETTI nahuel.angeline...@biblibre.com The specify due date calendar, doesn't accept today. This patch fix this issue and permit librarian to loan a book for one day. Signed-off-by: Henri-Damien LAURENT henridamien.laur...@biblibre.com ---

[Koha-patches] [PATCH 11/12] (bug #4319) allow reserves on waiting items

2010-04-30 Thread Henri-Damien LAURENT
This add a function to check the reserve status, and add a check in IsAvailableForItemLevelRequest() to allow request on items that are waiting Conflicts solved: C4/Reserves.pm Signed-off-by: Henri-Damien LAURENT henridamien.laur...@biblibre.com --- C4/Reserves.pm | 17