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

Owen Leonard oleonard at athenscounty.lib.oh.us
Thu Jan 26 22:42:39 CET 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch: 	rel_2_2
Changes by:	Owen Leonard <oleonard at savannah.gnu.org>	06/01/26 21:42:39

Modified files:
	koha-tmpl/intranet-tmpl/npl/en: modbibitem.tmpl overdue.tmpl 

Log message:
	Corrections to HTML and Template tag structure prompted by error report from translator script

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl.diff?only_with_tag=rel_2_2&tr1=1.1.2.1&tr2=1.1.2.2&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/koha/koha/koha-tmpl/intranet-tmpl/npl/en/overdue.tmpl.diff?only_with_tag=rel_2_2&tr1=1.1.2.1&tr2=1.1.2.2&r1=text&r2=text

Patches:
Index: koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl
diff -u koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl:1.1.2.1 koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl:1.1.2.2
--- koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl:1.1.2.1	Tue Jan 18 21:21:28 2005
+++ koha/koha-tmpl/intranet-tmpl/npl/en/modbibitem.tmpl	Thu Jan 26 21:42:39 2006
@@ -85,7 +85,7 @@
 		<!-- TMPL_LOOP Name="itemloop" -->
 			<tr>
 <td><input type="checkbox" name="check_group_<!-- TMPL_VAR Name="barcode" -->" /></td>
-				<td><a href="/cgi-bin/koha/moredetail.pl?item=<!-- TMPL_VAR Name="itemnumber" -->"amp;bib="TMPL_VAR Name="biblionumber">"amp;bi="TMPL_VAR Name="biblioitemnumber">"><!-- TMPL_VAR Name="barcode" --></a></td>
+				<td><a href="/cgi-bin/koha/moredetail.pl?item=<!-- TMPL_VAR Name="itemnumber" -->&amp;bib=<!-- TMPL_VAR Name="biblionumber" -->&amp;bi=<!-- TMPL_VAR Name="biblioitemnumber" -->"><!-- TMPL_VAR Name="barcode" --></a></td>
 				<td><!-- TMPL_VAR Name="holdingbranch" --></td>
 				<td></td>
 				<td><!-- TMPL_VAR Name="datelastseen" --></td>
Index: koha/koha-tmpl/intranet-tmpl/npl/en/overdue.tmpl
diff -u koha/koha-tmpl/intranet-tmpl/npl/en/overdue.tmpl:1.1.2.1 koha/koha-tmpl/intranet-tmpl/npl/en/overdue.tmpl:1.1.2.2
--- koha/koha-tmpl/intranet-tmpl/npl/en/overdue.tmpl:1.1.2.1	Thu Jan  5 22:01:56 2006
+++ koha/koha-tmpl/intranet-tmpl/npl/en/overdue.tmpl	Thu Jan 26 21:42:39 2006
@@ -24,16 +24,26 @@
 		<tr><th scope="row"><label for="branch">Branch :</label></th><td><select name="branch" id="branch">
 				<option value="">Any</option>
 			<!-- TMPL_LOOP name="branchloop" -->
-				<option value="<!-- TMPL_VAR name="value" -->"<!-- TMPL_IF name="selected" -->selected="selected"<!-- /TMPL_IF -->><!-- TMPL_VAR name="branchname" --></option>
+				<!-- TMPL_IF name="selected" -->
+				<option value="<!-- TMPL_VAR name="value" -->" selected="selected"><!-- TMPL_VAR name="branchname" --></option>
+				<!-- TMPL_ELSE -->
+				<option value="<!-- TMPL_VAR name="value" -->"><!-- TMPL_VAR name="branchname" --></option>
+				<!-- /TMPL_IF -->
 			<!-- /TMPL_LOOP -->
 			</select></td></tr>
-		<tr><th scope="row"><label for="showall">Show any items currently issued:</label></th><td><input type="checkbox" name="showall" id="showall" value="show" <!--TMPL_IF Name="showall"--> checked="checked"<!--/TMPL_IF-->></td></tr>
+		<tr><th scope="row"><label for="showall">Show any items currently issued:</label></th><td><!--TMPL_IF Name="showall"--><input type="checkbox" name="showall" id="showall" value="show" checked="checked" /><!-- TMPL_ELSE --><input type="checkbox" name="showall" id="showall" value="show" /><!--/TMPL_IF--></td></tr>
 		<tr><th scope="row"><label for="order">Sort By</label></th><td><select name="order" id="order">
-<option<!--TMPL_UNLESS name="order"--> selected="selected"<!-- /TMPL_UNLESS--> value="">Due Date</option>
-<option<!--TMPL_IF name="order"--> selected="selected"<!-- /TMPL_IF--> value="borrower">Borrower</option>
+<!--TMPL_IF name="order"-->
+	<option value="">Due Date</option>
+	<option selected="selected" value="borrower">Borrower</option>
+<!-- TMPL_ELSE -->
+	<option selected="selected" value="">Due Date</option>
+	<option value="borrower">Borrower</option>
+<!-- /TMPL_IF -->
+
 </select></td></tr>
 </table></div>
-			<input type="submit" class="submit" value="Apply Filter" class="button reports">
+			<input type="submit" class="submit" value="Apply Filter" class="submit" />
 	</form>
 	</p>
 





More information about the Koha-cvs mailing list