[Koha-devel] VERY URGENT: automatically redirection to searching page

2014-01-20 Thread Andrea Furin
After upgrading to koha 3.14.01.1-1 If I try to add a copy typing something from: http://localhost:8282/cgi-bin/koha/cataloguing/additem.pl?biblionumber=14#additemasearchid=nRPf4fIu browser goes to advanced search page:

Re: [Koha-devel] Automatic renewal feature

2014-01-20 Thread Holger Meissner
Galen Charlton wrote: Yes. Here is how I suggest doing it: - add an auto_renew flag to both issuingrules and issues - when a loan is made, issues.auto_renew is set to the value of issuingrules.auto_renew from the loan rule that was applied. - the cronjob checks issues.auto_renew -- in

Re: [Koha-devel] [Koha] VERY URGENT: automatically redirection to searching page

2014-01-20 Thread Owen Leonard
This is caused by not having updated your templates after the upgrade: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11567 On Jan 20, 2014, at 7:09 AM, Evan Mungai Njoroge evan.njor...@gmail.com wrote: This is happening after I updated koha to 3.14.1 on one instance 3.15 on

Re: [Koha-devel] Automatic renewal feature

2014-01-20 Thread Fischer, Katrin
Hi, normally you can assign the bug to yourself if the status is still NEW and not ASSIGNED, but we are a bit lax with setting the correct status sometimes, so leaving a note on the bug that you plan to work on something is probably good. I filed bug 7413 ages ago and it would be nice to see

[Koha-devel] Hackfest in Marseille, 2014

2014-01-20 Thread Paul Poulain
Hello Koha koha-devel mailing lists. I'm happy and proud to announce the 2014 edition of hackfest in Marseille: http://www.biblibre.com/en/blog/hackfest-marseille-2014 ! Registrations are now open ! just drop me an email ! ( already 12 registrations -not including BibLibre staff- ) -- Paul

[Koha-devel] Z39.50 searching by Publisher

2014-01-20 Thread Andrea Furin
Is it possible to make a searching in Z39.50 mask also by publisher? in file z3950_search.tt I've add a: lilabel for=""Publisher: /label input type="text" id="biblioitems.publishercode" name="biblioitems.publishercode" value="[% biblioitems.publishercode

[Koha-devel] opac error logs filled with messages about 'UNIVERSAL-import is deprecated ...'

2014-01-20 Thread Doug Kingston
Messages like this are appears nearly constantly from both 3.12 and 3.14 version of Koha. I checked cpan and it claims I have the latest version of Memoize::Memcached. Anyone else seeing this? [Mon Jan 20 17:42:32 2014] [error] [client 127.0.0.1] [Mon Jan 20 17:42:32 2014] Memcached.pm:

[Koha-devel] SQL Query : multiple items

2014-01-20 Thread Paul A
I'm going round in circles for what I thought would be easy, and will kick myself later. Trying to write a report that will give me all biblios with more than 1 item: SELECT biblionumber, CONCAT('a href=\/cgi-bin/koha/catalogue/detail.pl?biblionumber=',biblionumber,'\',title,'/a') AS Title,

Re: [Koha-devel] SQL Query : multiple items

2014-01-20 Thread Francois Charbonnier
Hi Paul, Try : GROUP BY biblionumber HAVING count(biblionumber)1 That way, it will work even for biblios without ccode. François François Charbonnier, Chef de produits Tél. : (888) 604-2627 francois.charbonn...@inlibro.com mailto:francois.charbonn...@inlibro.com inLibro | pour esprit libre |

Re: [Koha-devel] Adding Wysiwyg to (HTML) System Preferences

2014-01-20 Thread David Cook
Hi Martin: That looks pretty cool! I think we’re using TinyMCE 3.5.8 at the moment, so perhaps it would be useful for us to open another bug to look at moving all the TinyMCE instances up to 4.0.x. -David From: Martin Renvoize [mailto:martin.renvo...@ptfs-europe.com] Sent:

Re: [Koha-devel] SQL Query : multiple items

2014-01-20 Thread Francois Charbonnier
Paul, By the way, I forgot to mention you could add ccode this way : SELECT biblio.biblionumber, CONCAT('a href=\/cgi-bin/koha/catalogue/detail.pl?biblionumber=',biblionumber,'\',title,'/a') AS Title, biblio.author, GROUP_CONCAT(items.ccode SEPARATOR ', ') as ccode FROM biblio LEFT JOIN