[Rt-devel] [PATCH 3.7-RTIR-RELENG 1/3] xhtml: <nobr> tag in wrong place

Jason Long jlong at messiah.edu
Fri Nov 2 15:47:35 EDT 2007


The <nobr> opening tag came before the IF statement,
and the </nobr> closing tag was inside the IF statement.

This patch moves the <nobr> opening tag inside the IF statement,
to match the closing tag.
---

 html/Search/Elements/EditSearches |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

(Patch is attached)
-------------- next part --------------
diff --git a/html/Search/Elements/EditSearches b/html/Search/Elements/EditSearches
index eda59c5..6e16844 100644
--- a/html/Search/Elements/EditSearches
+++ b/html/Search/Elements/EditSearches
@@ -60,8 +60,8 @@
 <&|/l&>Description</&>:
 <input size="25" name="SavedSearchDescription" value="<% $Description %>" />
 
-<nobr>
 % if ($Id ne 'new') {
+<nobr>
 % if ($Dirty) {
 <input type="submit" class="button" name="SavedSearchRevert" value="<%loc('Revert')%>" />
 % }



More information about the Rt-devel mailing list