[Koha-patches] [PATCH 2/2] [Bug 4389] Missing semicolon breaks functionality

Tomas Cohen Arazi tomascohen at gmail.com
Wed Apr 6 17:41:36 CEST 2011


There was a missing semicolon.
---
 .../prog/en/modules/circ/circulation.tmpl          |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

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 d3c87ef..9f80e9a 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tmpl
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tmpl
@@ -411,7 +411,7 @@ No patron matched <span class="ex"><!-- TMPL_VAR name="message" --></span>
 <!-- /TMPL_IF -->
 
 
-<form method="post" action="/cgi-bin/koha/circ/circulation.pl" name="mainform" onsubmit="if ($('#barcode').val() == '') {return printx_window('qslip')}">
+<form method="post" action="/cgi-bin/koha/circ/circulation.pl" name="mainform" onsubmit="if ($('#barcode').val() == '') {return printx_window('qslip');}">
 <fieldset id="circ_circulation_issue">
     <!-- TMPL_IF NAME="DisplayClearScreenButton" -->
 	    <input type=button value="Clear Screen" onClick="window.location = '/cgi-bin/koha/circ/circulation.pl'">
@@ -853,4 +853,4 @@ No patron matched <span class="ex"><!-- TMPL_VAR name="message" --></span>
 <!-- TMPL_INCLUDE NAME="circ-menu.inc" -->
 </div><!-- /TMPL_IF --><!-- /TMPL_UNLESS -->
 </div>
-<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
\ No newline at end of file
+<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
-- 
1.7.1



More information about the Koha-patches mailing list