From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 01:31:41 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Sun, 30 Sep 2012 23:31:41 +0000 Subject: [Koha-bugs] [Bug 8818] Authority linker error on Z cataloging In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8818 Mason James changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - low |P1 - high Status|Signed Off |Passed QA CC| |mtj at kohaaloha.com QA Contact| |mtj at kohaaloha.com --- Comment #5 from Mason James --- (In reply to comment #4) > Created attachment 12512 [details] > [SIGNED-OFF] Bug 8818: make sure we load modules before using them patch looks good, passing QA $ koha-qa.pl -c 1 testing 1 commit(s) (applied to commit eb6effd) * 0a60190 Bug 8818: make sure we load modules before using them C4/Biblio.pm misc/link_bibs_to_authorities.pl * C4/Biblio.pm OK * misc/link_bibs_to_authorities.pl OK -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 04:01:03 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 02:01:03 +0000 Subject: [Koha-bugs] [Bug 8848] New: 'make test' fails on Barcodes_ValueBuilder.t (upgrading from 3.08.04) Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8848 Priority: P5 - low Change sponsored?: --- Bug ID: 8848 Assignee: gmcharlt at gmail.com Summary: 'make test' fails on Barcodes_ValueBuilder.t (upgrading from 3.08.04) Severity: major Classification: Unclassified OS: Linux Reporter: derrynj at gmail.com Hardware: All Status: NEW Version: rel_3_8 Component: Installation and upgrade (command-line installer) Product: Koha When I went to update from Koha 3.08.04 to .05 (from tarball): I did the usual perl koha_perl_deps.pl -m -u It reported no extra deps needed perl Makefile.PL --prev-install-log /usr/share/koha/misc/koha-install-log -PASSED make -PASSED make test - FAIL When I looked back at the logs I found it was missing a perl dep: Can't locate Test/MockModule.pm in @INC (@INC contains: /home/koha/koha-3.08.05/blib/PERL_MODULE_DIR /home/koha/koha-3.08.05/blib/arch /usr/share/koha/lib /usr/share/koha/lib /etc/perl /usr/local/lib/perl/5.14.2 /usr/local/share/perl/5.14.2 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.14 /usr/share/perl/5.14 /usr/local/lib/site_perl .) at t/Barcodes_ValueBuilder.t line 6. After I grabbed libtest-mockmodule-perl with an apt-get install: make test t/Barcodes_ValueBuilder.t ........... 1/10 install_driver(Mock) failed: Can't locate DBD/Mock.pm in @INC (@INC contains: /home/koha/koha-3.08.05/blib/PERL_MODULE_DIR /home/koha/koha-3.08.05/blib/arch /usr/share/koha/lib /usr/share/koha/lib /etc/perl /usr/local/lib/perl/5.14.2 /usr/local/share/perl/5.14.2 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.14 /usr/share/perl/5.14 /usr/local/lib/site_perl .) at (eval 30) line 3. Perhaps the DBD::Mock perl module hasn't been fully installed, or perhaps the capitalisation of 'Mock' isn't right. Available drivers: DBM, ExampleP, File, Gofer, Proxy, SQLite2, Sponge, mysql. at t/Barcodes_ValueBuilder.t line 15. # Looks like you planned 10 tests but ran 1. # Looks like your test exited with 2 just after 1. t/Barcodes_ValueBuilder.t ........... Dubious, test returned 2 (wstat 512, 0x200) Failed 9/10 subtests Tracked that one down to libdbd-mock-perl. Installed and reran make test -PASS I'm assuming these modules are only for testing purposes, but its a little disconcerting when a test that has previously worked suddenly fails. Additional Information: My Koha installation is: OS: Ubuntu server 12.04 Arch: amd64 Current Koha Version 3.08.04 (tarball) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 09:42:27 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 07:42:27 +0000 Subject: [Koha-bugs] [Bug 8849] New: Error log generated when not a demo system Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8849 Priority: P5 - low Change sponsored?: --- Bug ID: 8849 CC: gmcharlt at gmail.com Assignee: koha-bugs at lists.koha-community.org Summary: Error log generated when not a demo system Severity: trivial Classification: Unclassified OS: All Reporter: mtompset at hotmail.com Hardware: All Status: NEW Version: rel_3_8 Component: System Administration Product: Koha As a result of: [Mon Oct 01 15:28:59 2012] [error] [client 192.168.100.2] [Mon Oct 1 15:28:59 2012] marctagstructure.pl: Use of uninitialized value in numeric eq (==) at /usr/share/koha/intranet/cgi-bin/admin/marctagstructure.pl line 152. in Koha 3.8.5 this patch was generated. The line reads unless (C4::Context->config('demo') == 1) { which produces an error long entry while tweaking frameworks. It should read: unless (defined(C4::Context->config('demo')) && C4::Context->config('demo') == 1) { -- though this will still generate an error if the value isn't numeric. I'm going to assume that whoever does use it, will use it correctly. My understanding is that this value must be set to 1 in koha-conf.xml to prevent writing out MARC Framework changes (adds or modifies). However, since 'demo' is not defined in the default koha-conf.xml, this generates an error. This feature is not documented anywhere, as far as I know. Though 'demo' code does seem to exist in a couple places in Koha. Patch to follow. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 10:25:49 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 08:25:49 +0000 Subject: [Koha-bugs] [Bug 8849] Error log generated when not a demo system In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8849 --- Comment #1 from M. Tompsett --- It would seem that admin/auth_tag_structure.pl, admin/marc_subfields_structure.pl, admin/marctagstructure.pl, and admin/auth_subfields_structure.pl all need their condition revised. However, since I only found marctagstructure.pl in the error logs and since I can reproduce it, only marctagstructure.pl will be fixed. However, not with a ==1 or eq 1, but by removing the operator portion completely as is elsewhere. This is a grep from 3.8.x: $ grep "'demo'" `find .` ./admin/auth_tag_structure.pl: unless (C4::Context->config('demo') eq 1) { ./admin/auth_tag_structure.pl: unless (C4::Context->config('demo') eq 1) { ./admin/marc_subfields_structure.pl: unless ( C4::Context->config('de mo') eq 1 ) { ./admin/marc_subfields_structure.pl: unless ( C4::Context->config('demo') eq 1 ) { ./admin/preferences.pl: unless ( C4::Context->config( 'demo' ) ) { ./admin/marctagstructure.pl: unless (C4::Context->config('demo') == 1) { ./admin/marctagstructure.pl: unless (C4::Context->config('demo') == 1) { ./admin/auth_subfields_structure.pl: unless (C4::Context->con fig('demo') eq 1) { ./admin/auth_subfields_structure.pl: unless (C4::Context->config('demo') eq 1 ) { ./admin/systempreferences.pl: unless ( C4::Context->config('demo') ) { ./admin/systempreferences.pl: unless ( C4::Context->config('demo') ) { ./admin/systempreferences.pl: unless ( C4::Context->config('demo') ) { ./admin/systempreferences.pl: unless ( C4::Context->config('demo') ) { ./C4/Auth.pm: if ( $userid && $userid eq 'demo' ./C4/Auth.pm: && "$password" eq 'demo' ./C4/Auth.pm: && C4::Context->config('demo') ) ./C4/Auth.pm: elsif ( $userid eq 'demo' && C4::Context->config('demo') ) { ./debian/scripts/koha-run-backups:# - dump all sites, except one called 'demo' ./svc/config/systempreferences: unless ( C4::Context->config('demo') ) { ./svc/config/systempreferences: unless ( C4::Context->config( 'demo' ) ) { ./installer/InstallAuth.pm: && $userid eq 'demo' ./installer/InstallAuth.pm: && "$password" eq 'demo' ./installer/InstallAuth.pm: && C4::Context->config('demo') ) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 10:54:06 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 08:54:06 +0000 Subject: [Koha-bugs] [Bug 7913] Automatically receive serial issues In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7913 Koha Team Lyon 3 changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #12388|0 |1 is obsolete| | --- Comment #14 from Koha Team Lyon 3 --- Created attachment 12615 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12615&action=edit Bug_7913, Folllow-up hide button for subs with items redone on master (instead of 3.8). -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 10:54:48 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 08:54:48 +0000 Subject: [Koha-bugs] [Bug 7913] Automatically receive serial issues In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7913 Koha Team Lyon 3 changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Passed QA -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 11:14:31 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 09:14:31 +0000 Subject: [Koha-bugs] [Bug 7710] multiple holds per title In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7710 Paul Poulain changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |paul.poulain at biblibre.com --- Comment #21 from Paul Poulain --- ping. I've just been asked by one of our libraries about this feature. Any hope to see it submitted again ? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 11:18:11 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 09:18:11 +0000 Subject: [Koha-bugs] [Bug 8849] Error log generated when not a demo system In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8849 M. Tompsett changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff Assignee|koha-bugs at lists.koha-commun |mtompset at hotmail.com |ity.org | --- Comment #2 from M. Tompsett --- Created attachment 12616 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12616&action=edit Fix error logging triggered by adding/editing/deleting tags on framework Test ----- 1) Login 2) Administration 3) MARC bibliographic framework 4) Click 'MARC structure' for any framework. (May be a good idea to copy a frame work and choose the copy, since we will be deleting things!) 5) Click 'Edit' for any field. 6) Change values and then click 'Save Changes'. 7) Click 'Delete' for that field now. 8) click 'Yes, Delete this Tag' 9) Click 'OK' 10) click 'New Tag' 11) Let's enter the tag value of what we just deleted and put some dummy values in. 12) Check the error logs. There should be three errors. The first and last will be for the edit/add, and the middle will be for the delete. 13) Apply patch 14) repeat steps 3 through 12. 15) Error log entries those errors are no longer generated. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 11:26:55 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 09:26:55 +0000 Subject: [Koha-bugs] [Bug 8846] t/SuggestionEngine_ExplodedTerms.t sneakily uses database In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8846 Jared Camins-Esakov changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #12607|0 |1 is obsolete| | --- Comment #2 from Jared Camins-Esakov --- Created attachment 12617 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12617&action=edit Bug 8846: Exploded Terms test sneakily uses database Even though there is no need for anything stored in the database for the test, C4::Templates requires the database and a koha-conf.xml. The solution is to mock all database- and koha-conf-using routines. To test: 1) Stop MySQL 2) Unset KOHA_CONF 3) Run test -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 11:27:31 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 09:27:31 +0000 Subject: [Koha-bugs] [Bug 8849] Error log generated when not a demo system In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8849 --- Comment #3 from M. Tompsett --- This bug applies to master, 3.8.x, and 3.6.x versions of koha. Patch was generated from master. Applied to all three. Let me know if there's a problem. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 11:57:16 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 09:57:16 +0000 Subject: [Koha-bugs] [Bug 8850] New: Can't place hold on title with ILS-DI Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8850 Priority: P5 - low Change sponsored?: --- Bug ID: 8850 Assignee: julian.maurice at biblibre.com Summary: Can't place hold on title with ILS-DI Severity: major Classification: Unclassified OS: All Reporter: julian.maurice at biblibre.com Hardware: All Status: ASSIGNED Version: master Component: Architecture, internals, and plumbing Product: Koha When going on this address: /cgi-bin/koha/ilsdi.pl?service=HoldTitle&patron_id=84238&bib_id=115570&request_location=127.0.0.1 I get a software error Undefined subroutine &C4::ILSDI::Services::CanBookBeReserved called at /home/koha/src/C4/ILSDI/Services.pm line 606. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 12:02:01 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 10:02:01 +0000 Subject: [Koha-bugs] [Bug 8850] Can't place hold on title with ILS-DI In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8850 --- Comment #1 from Julian Maurice --- Created attachment 12618 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12618&action=edit Bug 8850: Export CanBookBeReserved in C4::ILSDI::Services -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 12:04:05 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 10:04:05 +0000 Subject: [Koha-bugs] [Bug 8850] Can't place hold on title with ILS-DI In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8850 Julian Maurice changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff --- Comment #2 from Julian Maurice --- To test, go to http://yourlibrary/cgi-bin/koha/ilsdi.pl?service=HoldTitle&patron_id=PATRON_ID&bib_id=BIB_ID&request_location=127.0.0.1 replacing PATRON_ID with a valid borrowernumber and BIB_ID with a valid biblionumber. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 12:25:31 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 10:25:31 +0000 Subject: [Koha-bugs] [Bug 8236] Prevent renewing if overdue or restriction In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8236 Koha Team Lyon 3 changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #12362|0 |1 is obsolete| | --- Comment #15 from Koha Team Lyon 3 --- Created attachment 12619 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12619&action=edit Block renewal when overdues documents patch redone on master. I just change again the name of syspref to "OverduesBlockRenew" in order to make easier the comparision (and distinction) with the other syspref OverduesBlockCirc -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 13:51:29 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 11:51:29 +0000 Subject: [Koha-bugs] [Bug 7710] multiple holds per title In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7710 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #10818|0 |1 is obsolete| | --- Comment #22 from Kyle M Hall --- Created attachment 12620 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12620&action=edit Bug 7710 - multiple holds per title Adds the ability to allow multiple holds on the same record for the same borrower. Adds new system preference MaxHoldsPerRecord, which controls how many holds one person can have on items for the same record. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 13:52:57 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 11:52:57 +0000 Subject: [Koha-bugs] [Bug 7710] multiple holds per title In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7710 --- Comment #23 from Kyle M Hall --- > However, when I place hold, I get 2 errors: > > Cannot place hold > Too Many Holds: [USER] has too many holds. > [USER] has already placed the maximum allowed number of holds on this > record > > > However, my syspref maxreserves is equal to 50 and I should not have the > first error. Have you set the "Holds allowed (count)" field in circulation rules? That field can also trigger the same error message. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 13:53:05 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 11:53:05 +0000 Subject: [Koha-bugs] [Bug 7710] multiple holds per title In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7710 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 14:38:26 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 12:38:26 +0000 Subject: [Koha-bugs] [Bug 8800] SpecifyDueDate && useDaysMode=Datedue wrong behaviour In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8800 Tom?s Cohen Arazi changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 15:17:59 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 13:17:59 +0000 Subject: [Koha-bugs] [Bug 7995] upload patron images permission needed to upload offline circ In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7995 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com --- Comment #3 from Kyle M Hall --- Is this still a valid bug? I'm having trouble recreating the issue. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 15:26:54 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 13:26:54 +0000 Subject: [Koha-bugs] [Bug 7995] upload patron images permission needed to upload offline circ In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7995 --- Comment #4 from Nicole C. Engard --- I don't remember why I reported this ... :) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 15:31:27 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 13:31:27 +0000 Subject: [Koha-bugs] [Bug 8851] New: strange blue bar above serials results Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8851 Priority: P5 - low Change sponsored?: --- Bug ID: 8851 Assignee: oleonard at myacpl.org Summary: strange blue bar above serials results Severity: minor Classification: Unclassified OS: All Reporter: nengard at gmail.com URL: cgi-bin/koha/serials/serials-search.pl?searched=1&titl e_filter=a Hardware: All Status: NEW Version: master Component: Templates Product: Koha Created attachment 12621 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12621&action=edit search heading See attached. When doing a serials search there is a strange looking header bar at the top. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 15:33:22 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 13:33:22 +0000 Subject: [Koha-bugs] [Bug 8852] New: branch not showing in serials results Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8852 Priority: P5 - low Change sponsored?: --- Bug ID: 8852 CC: colin.campbell at ptfs-europe.com Assignee: koha-bugs at lists.koha-community.org Summary: branch not showing in serials results Severity: normal Classification: Unclassified OS: All Reporter: nengard at gmail.com Hardware: All Status: NEW Version: master Component: Serials Product: Koha Created attachment 12622 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12622&action=edit no library listed On the serials search results there is no branch listed under Library - even if one was entered when creating the subscription. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 16:05:05 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 14:05:05 +0000 Subject: [Koha-bugs] [Bug 8818] Authority linker error on Z cataloging In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8818 Nicole C. Engard changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|critical |blocker --- Comment #6 from Nicole C. Engard --- updating severity since I can't catalog at all until this is pushed. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 16:09:58 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 14:09:58 +0000 Subject: [Koha-bugs] [Bug 8853] New: clicking basket name in closed baskets reopens it Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8853 Priority: P5 - low Change sponsored?: --- Bug ID: 8853 Assignee: koha-bugs at lists.koha-community.org Summary: clicking basket name in closed baskets reopens it Severity: major Classification: Unclassified OS: All Reporter: nengard at gmail.com URL: cgi-bin/koha/acqui/basketgroup.pl?booksellerid=1#close d Hardware: All Status: NEW Version: master Component: Acquisitions Product: Koha When I'm looking at my closed basket groups if I click the name of the basket I think it's supposed to open a summary (like it does on the open tab) but instead clicking a basket name reopens that basket ... if this is the intended behavior we need to make that clear, if not we need to fix it. Nicole -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 16:13:29 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 14:13:29 +0000 Subject: [Koha-bugs] [Bug 8854] New: invoice filters don't all work Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8854 Priority: P5 - low Change sponsored?: --- Bug ID: 8854 Assignee: koha-bugs at lists.koha-community.org Summary: invoice filters don't all work Severity: major Classification: Unclassified OS: All Reporter: nengard at gmail.com URL: cgi-bin/koha/acqui/invoices.pl Hardware: All Status: NEW Version: master Component: Acquisitions Product: Koha I am trying to do invoice searches and when I filter by branch or vendor or shipment date range I get no results, but if I search by number I see that those libraries and vendors do have invoices. It's possible that none of the other filters work, I didn't test them all. Nicole -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 16:35:00 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 14:35:00 +0000 Subject: [Koha-bugs] [Bug 8855] New: get from receipt to invoice Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8855 Priority: P5 - low Change sponsored?: --- Bug ID: 8855 Assignee: koha-bugs at lists.koha-community.org Summary: get from receipt to invoice Severity: enhancement Classification: Unclassified OS: All Reporter: nengard at gmail.com Hardware: All Status: NEW Version: master Component: Acquisitions Product: Koha It would be nice if you could get from the receipt page to the invoice page with a click. Right now you can get to the receipt page from the invoice page, just not the other way around. I think it would just require making the invoice number a link that goes to the corresponding invoice page. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 16:35:09 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 14:35:09 +0000 Subject: [Koha-bugs] [Bug 8581] Authority display doesn't like GND records In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8581 Paul Poulain changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master --- Comment #8 from Paul Poulain --- Patch pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 16:41:01 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 14:41:01 +0000 Subject: [Koha-bugs] [Bug 5335] More granular VAT In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5335 Colin Campbell changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |colin.campbell at ptfs-europe. | |com --- Comment #52 from Colin Campbell --- Patch breaks subscription-detail.pl ( it calls non-existant subroutines GetLastOrderNotReceivedFromSubscriptionId and GetLastOrderReceivedFromSubscriptionId it also does not put brackets around the parameters for these generating another error -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 16:41:03 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 14:41:03 +0000 Subject: [Koha-bugs] [Bug 8209] "Did you mean?" suggestions based on authorities In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8209 Paul Poulain changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master --- Comment #22 from Paul Poulain --- Follow-up pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 16:45:42 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 14:45:42 +0000 Subject: [Koha-bugs] [Bug 8110] Add tests for Calendar modules In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8110 Paul Poulain changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master --- Comment #51 from Paul Poulain --- The first 2 patches have been pushed. I haven't pushed the 3rd one, see comment 46 If i'm wrong, please argue ! PS: the test does not work locally for me, it should on jenkins -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 17:08:35 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 15:08:35 +0000 Subject: [Koha-bugs] [Bug 8852] branch not showing in serials results In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8852 --- Comment #1 from Colin Campbell --- Took a look at this but couldn't reproduce it (had to revert 5335 to actually view the records). the code is very simple get branchname from branchcode & display it so there seems little room for some bad logic to suppress it -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 17:32:01 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 15:32:01 +0000 Subject: [Koha-bugs] [Bug 3387] WITHDRAWN items shouldn't check in In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3387 Paul Poulain changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master Version|master |rel_3_10 --- Comment #32 from Paul Poulain --- Patch pushed to master BUT Mickey, I've a functional problem with the "prevent" option (that is the current one already, so this patch introduces an alternative which sounds OK to me. As stated in my comment 22, how to you deal with the situation of a checked-out item that is withdrawn ? once the book has been paid, you keep forever the information that the items had been checked out by patron X ? Otherwise, how do you delete the information ? Here, in France, we have a law for privacy. And a rule has been specified for a library: they can't keep track of this information for more than 3 months after the book has been returned (or refunded) So the "prevent check-in of withdrawn items" is a non-sense (well, something illegal ;-) ) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 17:36:46 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 15:36:46 +0000 Subject: [Koha-bugs] [Bug 3387] WITHDRAWN items shouldn't check in In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3387 --- Comment #33 from Paul Poulain --- (not patch pushed with a tiny follow-up for perlcritic: Variable declared in conditional statement at line 1836, column 5. Declare variables outside of the condition. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 17:38:54 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 15:38:54 +0000 Subject: [Koha-bugs] [Bug 7642] The number that appears when hovering over a tag in the tag cloud isn't the number of items with that tag In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7642 Paul Poulain changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #12022|0 |1 is obsolete| | --- Comment #39 from Paul Poulain --- Comment on attachment 12022 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12022 [SIGNED-OFF] Bug 7642 - fix the lost display of tag sizes this patch obsoleted by the rebased one -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 17:39:05 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 15:39:05 +0000 Subject: [Koha-bugs] [Bug 8856] New: Details section of cart always displays 59 Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8856 Priority: P5 - low Change sponsored?: --- Bug ID: 8856 Assignee: oleonard at myacpl.org Summary: Details section of cart always displays 59 Severity: trivial Classification: Unclassified OS: All Reporter: elliott at bywatersolutions.com Hardware: All Status: NEW Version: master Component: OPAC Product: Koha In opac-basket.tt the size of the result always seems to be 59. Here is a screenshot of the error http://screencast.com/t/32zlwFcCw8wZ -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 17:43:47 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 15:43:47 +0000 Subject: [Koha-bugs] [Bug 7642] The number that appears when hovering over a tag in the tag cloud isn't the number of items with that tag In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7642 Paul Poulain changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master --- Comment #40 from Paul Poulain --- Patch pushed to master, on master branch directly The QA tools have detected a mistake in POD doc (that was here before this patch), I've fixed it too -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 17:52:43 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 15:52:43 +0000 Subject: [Koha-bugs] [Bug 7913] Automatically receive serial issues In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7913 Paul Poulain changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master Version|master |rel_3_10 --- Comment #15 from Paul Poulain --- Patch pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 18:46:02 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 16:46:02 +0000 Subject: [Koha-bugs] [Bug 5335] More granular VAT In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5335 --- Comment #53 from Paul Poulain --- (In reply to comment #52) > Patch breaks subscription-detail.pl ( it calls non-existant subroutines > GetLastOrderNotReceivedFromSubscriptionId > and > GetLastOrderReceivedFromSubscriptionId Yikes ! This sub is here since the 1st patch submitted, it seems that no-one spotted that subscription-detail.pl was changed, and this patch has 4 signoffs+ my tests !!! * I've digged, and can't find any reference to this sub anywhere outside from subscription-detail.pl * it's used to display a link from subscription to acquisitions when applicable * Jonathan is not here atm (holiday for 2 more weeks) * I don't want to revert this patch, because reverting an updatedatabase-d patch is a nightmare To fix the problem described, I've commented the lines calling those sub. The behaviour on subscription is back to normal. I'll push this problem on top of Jonathan's list when he comes back. -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 18:53:56 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 16:53:56 +0000 Subject: [Koha-bugs] [Bug 8851] strange blue bar above serials results In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8851 Katrin Fischer changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |katrin.fischer at bsz-bw.de --- Comment #1 from Katrin Fischer --- Hi Nicole, this is the new advanced search. It will unfold when you click on the label. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 18:57:50 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 16:57:50 +0000 Subject: [Koha-bugs] [Bug 6039] Cancel all waiting holds button In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6039 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |http://bugs.koha-community. | |org/bugzilla3/show_bug.cgi? | |id=8213 -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 18:57:50 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 16:57:50 +0000 Subject: [Koha-bugs] [Bug 8213] "Cancel All" button on holds over tab cancels both holds over and holds waiting In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8213 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com See Also| |http://bugs.koha-community. | |org/bugzilla3/show_bug.cgi? | |id=6039 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 19:10:40 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 17:10:40 +0000 Subject: [Koha-bugs] [Bug 8818] Authority linker error on Z cataloging In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8818 Paul Poulain changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master CC| |paul.poulain at biblibre.com Version|master |rel_3_10 --- Comment #7 from Paul Poulain --- Patch pushed to master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 19:36:51 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 17:36:51 +0000 Subject: [Koha-bugs] [Bug 8213] "Cancel All" button on holds over tab cancels both holds over and holds waiting In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8213 --- Comment #5 from Kyle M Hall --- Created attachment 12623 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12623&action=edit Bug 8213 - "Cancel All" button on holds over tab cancels both holds over and holds waiting -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 19:39:37 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 17:39:37 +0000 Subject: [Koha-bugs] [Bug 7298] export late orders, with # of claims and claim dates In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7298 Paul Poulain changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA CC| |paul.poulain at biblibre.com --- Comment #21 from Paul Poulain --- QA comment 1- bug signed-off since more than 1 month, dealing with QA myself 2- qa.pl script shows some errors, easy to solve (use COALESCE instead of IFNULL & use spaces for indent) 3- replaces a SQL query in GetOrder in an unsafe way imo: - add many table.* to an already very long query (was biblio+biblioitems+aqorders, and adds aqbudgets+aqbasket) Would be better not to use * (including biblioitems, that contains marcxml field !!! was already here before the patch, but if you can fix it...) - does some changes that look strange : why DATE(aqbasket.closedate) AS orderdate ? why aqorders.quantity - IFNULL(aqorders.quantityreceived,0) AS quantity -quantity is a field from aqorders ? 4- the form $$order{estimateddeliverydate} must be discarded in favor of $order->{estimateddeliverydate} Failing QA for #4, need info (and maybe fix) for #3 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 19:40:11 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 17:40:11 +0000 Subject: [Koha-bugs] [Bug 7298] export late orders, with # of claims and claim dates In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7298 --- Comment #22 from Paul Poulain --- Created attachment 12624 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12624&action=edit Bug 7298 fixing 2 QA errors * replace IFNULL by COALESCE * replace 4 tabs by 4 "4 spaces" -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 19:41:24 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 17:41:24 +0000 Subject: [Koha-bugs] [Bug 8213] "Cancel All" button on holds over tab cancels both holds over and holds waiting In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8213 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff --- Comment #6 from Kyle M Hall --- Test Plan: 1) Create two holds, and set them to waiting for two patrons. 2) Make the waitingdate for one of the holds longer than the value set in ReservesMaxPickUpDelay. 3) You should now see one reserve on each tab on waitingreserves.pl 4) Backup your database 5) On the "Holds over" tab, click 'Cancel all'. This should cancel both holds 6) Restore your database 7) Apply this patch 8) Repeat step 4, only the hold in the "Holds over" tab should be canceled. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 20:51:51 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 18:51:51 +0000 Subject: [Koha-bugs] [Bug 5801] C4::Circulation::_GetCircControlBranch doesn't work in opac-reserve.pl In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5801 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com Assignee|koha.sekjal at gmail.com |kyle at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 21:16:35 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 19:16:35 +0000 Subject: [Koha-bugs] [Bug 5801] C4::Circulation::_GetCircControlBranch doesn't work in opac-reserve.pl In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5801 --- Comment #6 from Kyle M Hall --- Created attachment 12625 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12625&action=edit Bug 5801 - C4::Circulation::_GetCircControlBranch doesn't work in opac-reserve.pl -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 21:17:02 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 19:17:02 +0000 Subject: [Koha-bugs] [Bug 5801] C4::Circulation::_GetCircControlBranch doesn't work in opac-reserve.pl In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5801 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 21:18:56 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 19:18:56 +0000 Subject: [Koha-bugs] [Bug 8449] Improve wording and styling for "cancelled holds" on Holds Awaiting Pickup screen In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8449 --- Comment #7 from David Cook --- (In reply to comment #6) > Question: > > Owen, you replace: > -

This hold placed at the library : [% branchname %] , > Please transfer this hold. > > by > + Please retain this item and check it in to process the hold. > > IE: you loose the information of the branch you must transfer it to. Was it > intended ? > > Woudln't it be better to have > +

This item is on hold for pick-up at another library ([% branchname > %])

> > or something like that? I don't mean to speak for Owen, but the branchname information isn't particularly useful or relevant at this stage. Really, the staff member just needs to know that the item needs to be transferred (rather than shelved at their location), and that they process the transfer by checking in the item. Once they check it in, they'll see the branch to transfer it to and have the option of printing a slip, I believe. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 22:26:39 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 20:26:39 +0000 Subject: [Koha-bugs] [Bug 8581] Authority display doesn't like GND records In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8581 --- Comment #9 from Chris Cormack --- Could you please rebase this for 3.8.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 22:33:48 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 20:33:48 +0000 Subject: [Koha-bugs] [Bug 7642] The number that appears when hovering over a tag in the tag cloud isn't the number of items with that tag In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7642 --- Comment #41 from Chris Cormack --- This wont apply to 3.8.x please rebase if it is needed there. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 23:28:51 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 21:28:51 +0000 Subject: [Koha-bugs] [Bug 8857] New: Add and duplicate functionality inconsistent w/autobarcode Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8857 Priority: P5 - low Change sponsored?: --- Bug ID: 8857 CC: m.de.rooy at rijksmuseum.nl Assignee: gmcharlt at gmail.com Summary: Add and duplicate functionality inconsistent w/autobarcode Severity: enhancement Classification: Unclassified OS: All Reporter: steven_jeffery at fmi.com Hardware: All Status: NEW Version: rel_3_8 Component: Cataloging Product: Koha The add and duplicate functionality (used when adding items) duplicates most of the fields in the window in order to reduce cataloging time. With autobarcode disabled the barcode field is NOT duplicated. With autobarcode enabled the barcode field IS duplicated. The proper function is to NOT duplicate the barcode. (tried on 3.8.5) -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Mon Oct 1 23:43:23 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 21:43:23 +0000 Subject: [Koha-bugs] [Bug 5706] Search, create lists and Export authorities from staff interface In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5706 --- Comment #1 from Jared Camins-Esakov --- > 4) export MARC This was implemented in bug 8202 and bug 8203. -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 00:10:06 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 22:10:06 +0000 Subject: [Koha-bugs] [Bug 7642] The number that appears when hovering over a tag in the tag cloud isn't the number of items with that tag In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7642 --- Comment #42 from Robin Sheat --- Created attachment 12626 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12626&action=edit Bug 7642 - [3.8.x] fix the lost display of tag sizes This fixes the display of different sized words for differently popular tags. It is a bit of a refactor of that part of the system, moving logic to more sensible places (and removing an unused method on the way.) Note that it isn't an attempt to reproduce what was there previously, just to do something similar, and in an easier to change fashion. Sponsored-By: New Zealand Educational Institute Signed-off-by: Marc Veron Works as expected. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 00:11:06 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 22:11:06 +0000 Subject: [Koha-bugs] [Bug 7642] The number that appears when hovering over a tag in the tag cloud isn't the number of items with that tag In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7642 --- Comment #43 from Robin Sheat --- Rebased against 3.8.x -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 00:23:57 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 22:23:57 +0000 Subject: [Koha-bugs] [Bug 8215] Add Course Reserves In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8215 --- Comment #66 from Melia Meggs --- Created attachment 12627 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12627&action=edit development spec for course reserves I don't know if this helps answer any of your questions, but I thought I'd attach it anyway just in case. I could have sworn this was on the wiki somewhere, but I don't see it now, so maybe I forgot that step. My apologies! -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 00:24:02 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Mon, 01 Oct 2012 22:24:02 +0000 Subject: [Koha-bugs] [Bug 7642] The number that appears when hovering over a tag in the tag cloud isn't the number of items with that tag In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7642 Chris Cormack changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to Master |Pushed to Stable --- Comment #44 from Chris Cormack --- Pushed to 3.8.x, will be in 3.8.6 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 02:38:06 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 00:38:06 +0000 Subject: [Koha-bugs] [Bug 8597] New theme for the OPAC with a mobile view In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8597 --- Comment #66 from Nicole C. Engard --- I need some documentation help on this. Does this change the standard OPAC template as well? It looks to me like it does, that's why I ask. Shouldn't we have a computer view and a monitor view? Any help/documentation pointers are welcome. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 11:21:01 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 09:21:01 +0000 Subject: [Koha-bugs] [Bug 8605] cs-CZ: Filesystem sent error: No such file or directory In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8605 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |magnus at enger.priv.no --- Comment #2 from Magnus Enger --- Is this still a problem? -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 11:27:58 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 09:27:58 +0000 Subject: [Koha-bugs] [Bug 8850] Can't place hold on title with ILS-DI In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8850 --- Comment #3 from Julian Maurice --- Created attachment 12628 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12628&action=edit Bug 8850: Export CanItemBeReserved in C4::ILSDI::Services Same problem with CanItemBeReserved -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 12:02:15 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 10:02:15 +0000 Subject: [Koha-bugs] [Bug 6030] Allow for html in letters in overdue notices In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6030 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |magnus at enger.priv.no --- Comment #28 from Magnus Enger --- (In reply to comment #27) > The > Bug 6030 follow-up > needs to be adjusted so the patch will apply. I'm not sure I understand which follow-up needs to be adjusted? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 12:42:34 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 10:42:34 +0000 Subject: [Koha-bugs] [Bug 8605] cs-CZ: Filesystem sent error: No such file or directory In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8605 --- Comment #3 from Mike --- Yes, problem persist. Mike -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 13:38:10 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 11:38:10 +0000 Subject: [Koha-bugs] [Bug 5801] C4::Circulation::_GetCircControlBranch doesn't work in opac-reserve.pl In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5801 --- Comment #7 from Kyle M Hall --- Note, I think there is another improper use of C4::Circulation::_GetCircControlBranch in C4::Reserves::CheckReserves -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 13:47:08 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 11:47:08 +0000 Subject: [Koha-bugs] [Bug 8858] New: C4::Circulation::GetBranchItemRule is poorly written Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8858 Priority: P5 - low Change sponsored?: --- Bug ID: 8858 CC: gmcharlt at gmail.com, kyle.m.hall at gmail.com Assignee: koha-bugs at lists.koha-community.org Summary: C4::Circulation::GetBranchItemRule is poorly written Severity: enhancement Classification: Unclassified OS: All Reporter: kyle at bywatersolutions.com Hardware: All Status: NEW Version: master Component: Circulation Product: Koha The function C4::Circulation::GetBranchItemRule is mean to return back the 'hold allowed' policy and whether to return an item to the home or holding branch. A visual inspection of this subroutine shows that it could be re-factored for efficiency. It always runs all four searches even if it is unnecessary. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 13:47:20 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 11:47:20 +0000 Subject: [Koha-bugs] [Bug 8858] C4::Circulation::GetBranchItemRule is poorly written In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8858 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs at lists.koha-commun |kyle at bywatersolutions.com |ity.org | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:02:49 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:02:49 +0000 Subject: [Koha-bugs] [Bug 8859] New: Item level holds not trapped if circ rules for item type are set to 'no holds allowed' Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8859 Priority: P5 - low Change sponsored?: --- Bug ID: 8859 CC: gmcharlt at gmail.com Assignee: koha-bugs at lists.koha-community.org Summary: Item level holds not trapped if circ rules for item type are set to 'no holds allowed' Severity: normal Classification: Unclassified OS: All Reporter: kyle at bywatersolutions.com Hardware: All Status: NEW Version: master Component: Hold requests Product: Koha If the circulation rules for an item type are set to 'no holds allowed', but a librarian overrides this rule and forces an item level hold, the hold request will never be filled. When the item is checked in, Koha searches for any open hold requests that this item may fulfill, but when it sees that items with this item type don't allow holds, it skips over it. This behavior should probably be overridden for item-level holds. The relevant code is in C4::Reserves::CheckReserves. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:27:08 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:27:08 +0000 Subject: [Koha-bugs] [Bug 8497] Strange behavior when modifying the 'timeout' system preference. In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8497 Fridolyn SOMERS changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff Assignee|koha-bugs at lists.koha-commun |fridolyn.somers at biblibre.co |ity.org |m --- Comment #1 from Fridolyn SOMERS --- Created attachment 12629 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12629&action=edit Proposed patch The use of 1d (=one day) in "timeout" syspref was only checked in normal authentication (Auth.pm checkauth), it was missing in check_api_auth() and check_cookie_auth(). I add a private method in Auth.pm : _timeout_syspref(). Test plan : - Set timeout syspref to 1d - Login in intranet (uses checkauth) - In header, use borrower auto-completion in "check out" (uses check_cookie_auth) - Go to Administration/System preferences, modify a syspref and save (check_api_auth) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:27:30 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:27:30 +0000 Subject: [Koha-bugs] [Bug 8845] Add ability search patrons by date of birth In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8845 --- Comment #3 from Owen Leonard --- I think it's a problem that this patch doesn't take varying date formats into account. What about searches by DD-MM-YYYY or MM-DD-YYYY? A couple of possibilities for mitigating the problem, if the patch can't be amended to accept multiple formats: - Offer a hint about the date format required - Offer a datepicker which will return the correct format Both could be triggered upon selection of the "date of birth" option. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:38:14 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:38:14 +0000 Subject: [Koha-bugs] [Bug 8860] New: can't merge if you don't have fast cataloging permissions Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8860 Priority: P5 - low Change sponsored?: --- Bug ID: 8860 CC: m.de.rooy at rijksmuseum.nl Assignee: gmcharlt at gmail.com Summary: can't merge if you don't have fast cataloging permissions Severity: critical Classification: Unclassified OS: All Reporter: nengard at gmail.com Hardware: All Status: NEW Version: rel_3_8 Component: Cataloging Product: Koha A couple of libraries so far have reported that they are unable to merge records through the Lists feature. They can create a list, add records to it, and select two records to merge without a problem, but when they get to the Merge Reference screen and click Next, they get logged out of koha and put back to the Login screen with an error. When logging back in, they get the error message "an unexpected number of records was provided for merging. Currently only two records at a time can be merged." They have only selected two records for merging but they still receive this message. We have tested this in 3.8 and master and in Chrome, Firefox and IE. It actually works in IE, but doesn't in FF or Chrome (the browsers we tell people to use for the staff client). It turns out this happens to users who have edit catalog and edit items permission but not fast cataloging permissions. You shouldn't need fast cataloging permissions to merge items, all it should require is edit catalog and edit items. Also, the error message is misleading since it's a permissions issue and not an issue with the number of items you're merging. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:46:12 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:46:12 +0000 Subject: [Koha-bugs] [Bug 8581] Authority display doesn't like GND records In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8581 --- Comment #10 from Jared Camins-Esakov --- Created attachment 12630 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12630&action=edit [3.8.x] Bug 8581: don't display parentheses when we don't have a type Prior to this patch, see also references in certain authority records (most notably GND records) were being followed by empty parentheses in the search results display. This patch resolves that problem. Signed-off-by: Chris Cormack Signed-off-by: Paul Poulain Signed-off-by: Jared Camins-Esakov -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:46:55 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:46:55 +0000 Subject: [Koha-bugs] [Bug 5998] Error "failed to submit form parsererror" and empty staged In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5998 Fridolyn SOMERS changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolyn.somers at biblibre.co | |m --- Comment #1 from Fridolyn SOMERS --- Seems to be related to 8497 -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:47:04 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:47:04 +0000 Subject: [Koha-bugs] [Bug 5998] Error "failed to submit form parsererror" and empty staged In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5998 Fridolyn SOMERS changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |http://bugs.koha-community. | |org/bugzilla3/show_bug.cgi? | |id=8497 -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:47:04 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:47:04 +0000 Subject: [Koha-bugs] [Bug 8497] Strange behavior when modifying the 'timeout' system preference. In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8497 Fridolyn SOMERS changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |http://bugs.koha-community. | |org/bugzilla3/show_bug.cgi? | |id=5998 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:47:19 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:47:19 +0000 Subject: [Koha-bugs] [Bug 5998] Error "failed to submit form parsererror" and empty staged In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5998 Fridolyn SOMERS changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:47:53 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:47:53 +0000 Subject: [Koha-bugs] [Bug 8581] Authority display doesn't like GND records In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8581 Jared Camins-Esakov changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #11395|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:48:26 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:48:26 +0000 Subject: [Koha-bugs] [Bug 8581] Authority display doesn't like GND records In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8581 --- Comment #11 from Jared Camins-Esakov --- Patch rebased for 3.8.x attached. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:54:13 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:54:13 +0000 Subject: [Koha-bugs] [Bug 8689] disable login via Koha's $database account In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8689 Magnus Enger changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |magnus at enger.priv.no --- Comment #3 from Magnus Enger --- What should the status be here? Needs signoff or Failed QA? -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:56:09 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:56:09 +0000 Subject: [Koha-bugs] [Bug 8861] New: Undefined variables in batchMod.pl trigger error logs Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8861 Priority: P5 - low Change sponsored?: --- Bug ID: 8861 Assignee: gmcharlt at gmail.com Summary: Undefined variables in batchMod.pl trigger error logs Severity: minor Classification: Unclassified OS: All Reporter: mtompset at hotmail.com Hardware: All Status: NEW Version: master Component: Tools Product: Koha This module was looked at because of: [Tue Oct 02 17:00:56 2012] [error] [client 192.168.100.2] [Tue Oct 2 17:00:56 2012] batchMod.pl: Problem = a value of 1 has been passed to param without key at /usr/share/koha/lib/C4/Templates.pm line 187. There are two sections that match, though this was likely the $op case, not the $error case: $template->param( op => $nextop, $op => 1, ); foreach my $error (@errors) { $template->param($error => 1); } I would normally change: my $op = $input->param('op'); into my $op = $input->param('op') || q{}; However there was code that read: if (!defined $op) { So, I looked to see how $op was used after that: if ($op eq "action") { if ($op eq "show"){ Of course, the above error'ing code, and lastly. if ($op eq "action") { As such, I decided to define $op = q{} inside the if statement, after it ran it's !defined check. And I still moved the $op => 1 to an external, conditional template param call. Additionally, I looked for where @errors was used in the file, but only the declaration, and this foreach had a @errors reference. And as an array could be filled with undef's, I err'd on the side of caution by adding "if $error" on the template parameter call. This was found in 3.8.5. Looks like it is master too. Patch to follow shortly. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:59:34 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:59:34 +0000 Subject: [Koha-bugs] [Bug 8862] New: merge.pl contains untranslatable strings Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8862 Priority: P5 - low Change sponsored?: --- Bug ID: 8862 CC: m.de.rooy at rijksmuseum.nl Assignee: gmcharlt at gmail.com Summary: merge.pl contains untranslatable strings Severity: enhancement Classification: Unclassified OS: All Reporter: kyle at bywatersolutions.com Hardware: All Status: NEW Version: master Component: Cataloging Product: Koha merge.pl has error strings embedded in the Perl code, and are thus not translatable. -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 14:59:49 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 12:59:49 +0000 Subject: [Koha-bugs] [Bug 8862] merge.pl contains untranslatable strings In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8862 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:00:09 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:00:09 +0000 Subject: [Koha-bugs] [Bug 8862] merge.pl contains untranslatable strings In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8862 --- Comment #1 from Kyle M Hall --- Created attachment 12631 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12631&action=edit Bug 8862 - merge.pl contains untranslatable strings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:01:04 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:01:04 +0000 Subject: [Koha-bugs] [Bug 8862] merge.pl contains untranslatable strings In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8862 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #12631|0 |1 is obsolete| | --- Comment #2 from Kyle M Hall --- Created attachment 12632 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12632&action=edit Bug 8862 - merge.pl contains untranslatable strings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:01:22 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:01:22 +0000 Subject: [Koha-bugs] [Bug 8862] merge.pl contains untranslatable strings In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8862 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|gmcharlt at gmail.com |kyle at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:01:30 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:01:30 +0000 Subject: [Koha-bugs] [Bug 8862] merge.pl contains untranslatable strings In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8862 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:02:29 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:02:29 +0000 Subject: [Koha-bugs] [Bug 8862] merge.pl contains untranslatable strings In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8862 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #12632|0 |1 is obsolete| | --- Comment #3 from Kyle M Hall --- Created attachment 12633 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12633&action=edit Bug 8862 - merge.pl contains untranslatable strings -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:25:04 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:25:04 +0000 Subject: [Koha-bugs] [Bug 8860] can't merge if you don't have fast cataloging permissions In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8860 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kyle at bywatersolutions.com Assignee|gmcharlt at gmail.com |kyle at bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:25:08 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:25:08 +0000 Subject: [Koha-bugs] [Bug 8860] can't merge if you don't have fast cataloging permissions In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8860 --- Comment #1 from Kyle M Hall --- Created attachment 12634 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=12634&action=edit Bug 8860 - can't merge if you don't have fast cataloging permissions -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:25:17 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:25:17 +0000 Subject: [Koha-bugs] [Bug 8860] can't merge if you don't have fast cataloging permissions In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8860 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:25:43 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:25:43 +0000 Subject: [Koha-bugs] [Bug 8860] can't merge if you don't have fast cataloging permissions In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8860 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |http://bugs.koha-community. | |org/bugzilla3/show_bug.cgi? | |id=8862 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:25:43 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:25:43 +0000 Subject: [Koha-bugs] [Bug 8862] merge.pl contains untranslatable strings In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8862 Kyle M Hall changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |http://bugs.koha-community. | |org/bugzilla3/show_bug.cgi? | |id=8860 -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:30:47 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:30:47 +0000 Subject: [Koha-bugs] [Bug 8497] Strange behavior when modifying the 'timeout' system preference. In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8497 Fridolyn SOMERS changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |critical -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:33:03 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:33:03 +0000 Subject: [Koha-bugs] [Bug 8860] can't merge if you don't have fast cataloging permissions In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8860 Owen Leonard changed: What |Removed |Added ---------------------------------------------------------------------------- Version|rel_3_8 |master -- You are receiving this mail because: You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:33:34 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:33:34 +0000 Subject: [Koha-bugs] [Bug 8845] Add ability search patrons by date of birth In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8845 --- Comment #4 from Marc V?ron --- I think the problem with coding is that e.g. 03-09-2012 would be ambiguous (3. September or 9. March?). Thats why I propose to give a hint, the best place would be in the selection itself, e.g. Marc -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. From bugzilla-daemon at bugs.koha-community.org Tue Oct 2 15:37:50 2012 From: bugzilla-daemon at bugs.koha-community.org (bugzilla-daemon at bugs.koha-community.org) Date: Tue, 02 Oct 2012 13:37:50 +0000 Subject: [Koha-bugs] [Bug 8845] Add ability search patrons by date of birth In-Reply-To: References: Message-ID: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8845 --- Comment #5 from Owen Leonard --- (In reply to comment #4) > I think the problem with coding is that e.g. 03-09-2012 would be ambiguous > (3. September or 9. March?). Unless you used the dateformat system preference as a rule by which you parse the date. Does Koha have existing code for handling varying date inputs? Otherwise, I agree that putting a hint in the