From 0506218f8bf386236bbf9a6b18c7b2ae886dbb4b Mon Sep 17 00:00:00 2001 From: Michael Hafen Date: Wed, 27 Aug 2008 16:46:57 -0600 Subject: [PATCH] javascript redirect when selecting a patron on circulation.pl Patron Selection Screen This adds a little javascript to the Patron Selection form input after searching for a patron to check out to. On click it redirects to checking out to the clicked patron. Signed-off-by: Galen Charlton --- circ/circulation.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/circ/circulation.pl b/circ/circulation.pl index 14f94f1d6e..bf2dca311b 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -525,6 +525,7 @@ if ($borrowerslist) { -id => 'borrowernumber', -values => \@values, -labels => \%labels, + -onclick => "window.location = '/cgi-bin/koha/circ/circulation.pl?borrowernumber=' + this.value;", -size => 7, -tabindex => '', -multiple => 0 -- 2.39.5