Re: [Koha-devel] Koha 2.2.9 sticky due date

2008-04-08 Thread Michael Hafen
My solution to that was to use a cookie, then have anything that could accept a specified due date check for the cookie. Like so in renewscript.pl : my $date; if ($input->cookie('stickyduedate')) { my ($year, $month, $day) = split /-/, $input->cookie('stickyduedate'); $date = $year ."-".

[Koha-devel] Koha 2.2.9 sticky due date

2008-04-08 Thread C W Nel
Hi All Can someone please help with above. I need to use the sticky due date also for renewal of allready issued items. The renewbooks function in circ2.pm allows for a "duedate" parameter. I need to know how to force the renew functionality to use the sticky due date. It sounds straight forwar