From 6de2f89e97d39f62a860b9b1fd4648523ad9e095 Mon Sep 17 00:00:00 2001 From: Michael Hafen Date: Tue, 2 Sep 2008 16:13:16 -0600 Subject: [PATCH] bug: sticky due date isn't stick if there is a question about an issue the stickyduedate input isn't sent on from the question dialogs. This causes it to un-stick if there is a question. Also removed month, day, and year as there seems to be no use for them. Signed-off-by: Galen Charlton --- circ/circulation.pl | 3 --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tmpl | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index e6a92d9218..70e7fd230b 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -121,9 +121,6 @@ $printer = C4::Context->userenv->{'branchprinter'}; my $barcode = $query->param('barcode') || ''; $barcode = barcodedecode($barcode) if( $barcode && C4::Context->preference('itemBarcodeInputFilter')); -my $year = $query->param('year'); -my $month = $query->param('month'); -my $day = $query->param('day'); my $stickyduedate = $query->param('stickyduedate'); my $duedatespec = $query->param('duedatespec'); my $issueconfirmed = $query->param('issueconfirmed'); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tmpl index 5ee4ae155c..17d579de3e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tmpl @@ -114,9 +114,7 @@ $.tablesorter.addParser({ " /> - " /> - " /> - " /> + " /> " /> -- 2.39.5