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 ."-".
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