Re: [Koha-devel] KOHA Error Redirecting Help

2010-01-05 Thread Mike Hafen
That error is generated by the Carp Perl module. It is placed in the browser for you instead of in a log file. The only way to change the error is to change the code, in addbiblio.pl line 878, so that it checks the biblio loaded properly before calling the title function. There, if the biblio di

Re: [Koha-devel] [3.0.x] Errors in english system prefs

2009-10-14 Thread Mike Hafen
The maxItemsInSearchResults is a feature that I worked on. I didn't know how much interest there was, so I didn't put it in the updatedatabase.pl. Looks like the rest of the work is done. This feature controls how many items are shown per status in the search results page. The default is one ite

Re: [Koha-devel] Using a Native XML Database with Koha

2009-06-02 Thread Mike Hafen
Funny you should mention this now. I was just thinking about removing MARC from Koha and dropping in DC. Switching to all XML is a much better idea. The reason I was thinking about this is because some people I work with want to use Koha for Asset Management and Inventory. I have a few libraria

Re: [Koha-devel] Mass updating a field

2009-03-06 Thread Mike Hafen
This will have to be done in two parts as you got it setup. First is to update the items table, then there is a command line script to update the marc and zebra. First: update db1.items cross join tempdb.items using ( itemnumber ) set db1.items.barcode = tempdb.items.barcode; That should take c