[Koha-cvs] koha/koha-tmpl/intranet-tmpl/npl/en circ/branch... [rel_2_2]

Owen Leonard oleonard at athenscounty.lib.oh.us
Wed Jul 18 16:32:42 CEST 2007


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_2_2
Changes by:	Owen Leonard <oleonard>	07/07/18 14:32:42

Modified files:
	koha-tmpl/intranet-tmpl/npl/en/circ: branchtransfers.tmpl 
	koha-tmpl/intranet-tmpl/npl/en/marcimport: uploadmarc.tmpl 
	koha-tmpl/intranet-tmpl/npl/en/z3950: searchresult.tmpl 

Log message:
	Correcting unquoted attributes (Bug 1385)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/npl/en/circ/branchtransfers.tmpl?cvsroot=koha&only_with_tag=rel_2_2&r1=1.2.2.3&r2=1.2.2.4
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/npl/en/marcimport/uploadmarc.tmpl?cvsroot=koha&only_with_tag=rel_2_2&r1=1.2&r2=1.2.2.1
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/npl/en/z3950/searchresult.tmpl?cvsroot=koha&only_with_tag=rel_2_2&r1=1.2.2.8&r2=1.2.2.9

Patches:
Index: circ/branchtransfers.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/npl/en/circ/Attic/branchtransfers.tmpl,v
retrieving revision 1.2.2.3
retrieving revision 1.2.2.4
diff -u -b -r1.2.2.3 -r1.2.2.4
--- circ/branchtransfers.tmpl	31 Aug 2005 15:43:56 -0000	1.2.2.3
+++ circ/branchtransfers.tmpl	18 Jul 2007 14:32:42 -0000	1.2.2.4
@@ -70,13 +70,13 @@
 			<input type="hidden" name="biblionumber" value="<!-- TMPL_VAR Name="biblionumber" -->" />
 			<input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR Name="bornum" -->" />
 			<input type="hidden" name="tobranchcd" value="<!-- TMPL_VAR Name="tobranchcd" -->" />
-			<input type="hidden" name="barcode" value=<!-- TMPL_VAR Name="barcode" --> />
+			<input type="hidden" name="barcode" value="<!-- TMPL_VAR Name="barcode" -->" />
 			<input type="hidden" name="request" value="KillReserved" />
 			<input type="submit" class="cancel" value="Cancel reservation and then attempt transfer" />
 			</form></li><!-- /TMPL_IF -->
 		
 		<li><form method="post" name="mainform" id="mainform" action="branchtransfers.pl" />
-			<input type="hidden" name="tobranchcd" value=<!-- TMPL_VAR Name="tobranchcd" --> />
+			<input type="hidden" name="tobranchcd" value="<!-- TMPL_VAR Name="tobranchcd" -->" />
 			<input type="hidden" name="barcode" />
 			<!-- TMPL_LOOP Name="trsfitemloop" -->
 				<input type="hidden" name="bc-<!-- TMPL_VAR Name="counter" -->" value="<!-- TMPL_VAR Name="barcode" -->" />

Index: marcimport/uploadmarc.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/npl/en/marcimport/Attic/uploadmarc.tmpl,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -b -r1.2 -r1.2.2.1
--- marcimport/uploadmarc.tmpl	27 Oct 2004 16:30:48 -0000	1.2
+++ marcimport/uploadmarc.tmpl	18 Jul 2007 14:32:42 -0000	1.2.2.1
@@ -23,16 +23,16 @@
 	</tr>
 	<tr>
 		<td>
-			<input type="hidden" name="menu" value=<!-- TMPL_VAR NAME="menu" -->>
+			<input type="hidden" name="menu" value="<!-- TMPL_VAR NAME="menu" -->" />
 			Name this set of MARC records:
 		</td>
 		<td>
-			<input type="text" name="name">
+			<input type="text" name="name" />
 		</td>
 	</tr>
 	<tr>
 		<td colspan="2" align="center">
-			<input type="submit">
+			<input type="submit" />
 		</td>
 	</tr>
 </table>

Index: z3950/searchresult.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/npl/en/z3950/Attic/searchresult.tmpl,v
retrieving revision 1.2.2.8
retrieving revision 1.2.2.9
diff -u -b -r1.2.2.8 -r1.2.2.9
--- z3950/searchresult.tmpl	6 Jun 2007 04:38:28 -0000	1.2.2.8
+++ z3950/searchresult.tmpl	18 Jul 2007 14:32:42 -0000	1.2.2.9
@@ -42,9 +42,9 @@
     <!-- TMPL_LOOP name="serverloop" -->
         <p>
             <!-- TMPL_IF name="checked" -->
-            	<input type="checkbox" name="id" id="z3950_<!-- TMPL_VAR NAME="id" -->" value=<!-- TMPL_VAR NAME="id" --> checked="1" />
+            	<input type="checkbox" name="id" id="z3950_<!-- TMPL_VAR NAME="id" -->" value="<!-- TMPL_VAR NAME="id" -->" checked="1" />
             <!-- TMPL_ELSE -->
-                <input type="checkbox" name="id" id="z3950_<!-- TMPL_VAR NAME="id" -->" value=<!-- TMPL_VAR NAME="id" --> />
+                <input type="checkbox" name="id" id="z3950_<!-- TMPL_VAR NAME="id" -->" value="<!-- TMPL_VAR NAME="id" -->" />
             <!-- /TMPL_IF -->
 			<label for="z3950_<!-- TMPL_VAR NAME="id" -->"><!-- TMPL_VAR NAME="name" --> [<!-- TMPL_VAR NAME="server" -->]</label>
 





More information about the Koha-cvs mailing list