Revision
270
Author
bbieber
Date
2007-01-31 12:55:46 -0800 (Wed, 31 Jan 2007)

Log Message

Fix mismatched </td> to </th>, remove wrap attribute on report textarea fields -- has no effect in modern browsers because it is not a valid attribute.
Both fix minor validation errors for the bugs package.

Modified Paths

Diff

Modified: trunk/bugs/include/functions.inc (269 => 270)


--- trunk/bugs/include/functions.inc	2007-01-23 04:33:56 UTC (rev 269)
+++ trunk/bugs/include/functions.inc	2007-01-31 20:55:46 UTC (rev 270)
@@ -1491,7 +1491,7 @@
     print '<label for="pear_persist_chckbx">Remember username and password.</label></td>' . "\n";
     print " </tr>\n";
     print " <tr>\n";
-    print '  <th class="form-label_left">&nbsp;</td>' . "\n";
+    print '  <th class="form-label_left">&nbsp;</th>' . "\n";
     print '  <td class="form-input"><input type="submit" value="Log in!" /></td>' . "\n";
     print " </tr>\n";
     print "</table>\n";

Modified: trunk/bugs/templates/default/bugdisplaycomment.php (269 => 270)


--- trunk/bugs/templates/default/bugdisplaycomment.php	2007-01-23 04:33:56 UTC (rev 269)
+++ trunk/bugs/templates/default/bugdisplaycomment.php	2007-01-31 20:55:46 UTC (rev 270)
@@ -53,8 +53,7 @@
 </table>
 
 <div>
- <textarea cols="60" rows="10" name="ncomment"
-  wrap="physical"><?php echo clean($this->ncomment) ?></textarea>
+ <textarea cols="60" rows="10" name="ncomment"><?php echo clean($this->ncomment) ?></textarea>
  <br /><input type="submit" value="Submit" />
 </div>
 

Modified: trunk/bugs/templates/default/bugdisplaydeveloper.php (269 => 270)


--- trunk/bugs/templates/default/bugdisplaydeveloper.php	2007-01-23 04:33:56 UTC (rev 269)
+++ trunk/bugs/templates/default/bugdisplaydeveloper.php	2007-01-31 20:55:46 UTC (rev 270)
@@ -204,8 +204,7 @@
      </label>
     </p>
 
-    <textarea cols="60" rows="8" name="ncomment" id="ncomment"
-     wrap="physical"><?php echo clean($this->ncomment) ?></textarea>
+    <textarea cols="60" rows="8" name="ncomment" id="ncomment"><?php echo clean($this->ncomment) ?></textarea>
 
     <p style="margin-top: 0em">
     <input type="submit" value="Submit" />

Modified: trunk/bugs/templates/default/bugdisplayedit.php (269 => 270)


--- trunk/bugs/templates/default/bugdisplayedit.php	2007-01-23 04:33:56 UTC (rev 269)
+++ trunk/bugs/templates/default/bugdisplayedit.php	2007-01-31 20:55:46 UTC (rev 270)
@@ -162,8 +162,7 @@
      </label>
     </p>
 
-    <textarea cols="60" rows="8" name="ncomment" id="ncomment"
-     wrap="physical"><?php echo clean($this->ncomment) ?></textarea>
+    <textarea cols="60" rows="8" name="ncomment" id="ncomment"><?php echo clean($this->ncomment) ?></textarea>
 
     <p style="margin-top: 0em">
     <input type="submit" value="Submit" />

Modified: trunk/bugs/templates/default/reportbug.php (269 => 270)


--- trunk/bugs/templates/default/reportbug.php	2007-01-23 04:33:56 UTC (rev 269)
+++ trunk/bugs/templates/default/reportbug.php	2007-01-31 20:55:46 UTC (rev 270)
@@ -184,8 +184,7 @@
    </p>
   </th>
   <td class="form-input">
-   <textarea cols="60" rows="15" name="in[ldesc]"
-    wrap="physical"><?php echo clean($this->in['ldesc']); ?></textarea>
+   <textarea cols="60" rows="15" name="in[ldesc]"><?php echo clean($this->in['ldesc']); ?></textarea>
   </td>
  </tr>
  <tr>
@@ -211,8 +210,7 @@
    </p>
   </th>
   <td class="form-input">
-   <textarea cols="60" rows="15" name="in[expres]"
-    wrap="physical"><?php echo clean($this->in['expres']); ?></textarea>
+   <textarea cols="60" rows="15" name="in[expres]"><?php echo clean($this->in['expres']); ?></textarea>
   </td>
  </tr>
  <tr>
@@ -226,8 +224,7 @@
    </p>
   </th>
   <td class="form-input">
-   <textarea cols="60" rows="15" name="in[actres]"
-    wrap="physical"><?php echo clean($this->in['actres']); ?></textarea>
+   <textarea cols="60" rows="15" name="in[actres]"><?php echo clean($this->in['actres']); ?></textarea>
   </td>
  </tr>
  <tr>