Fixed trailing whitespace. Removed duplicate form tag. Sorted invalid markup tags.
git-svn-id: http://svn.automattic.com/wordpress/trunk@438 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b7a5ea4461
commit
7aa27eab30
|
@ -318,7 +318,6 @@ switch ($action) {
|
|||
<th valign="top" style="border-bottom: 1px dotted #9C9A9C;" >between</th>
|
||||
<th valign="top" style="border-bottom: 1px dotted #9C9A9C; border-right: 1px dotted #9C9A9C;" >after</th>
|
||||
</tr>
|
||||
<form name="cats" method="post">
|
||||
<input type="hidden" name="cat_id" value="" />
|
||||
<input type="hidden" name="action" value="" />
|
||||
<?php
|
||||
|
@ -353,9 +352,10 @@ $results = $wpdb->get_results("SELECT cat_id, cat_name, auto_toggle, show_images
|
|||
}
|
||||
?>
|
||||
</table>
|
||||
|
||||
</table>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="wrap">
|
||||
|
@ -380,7 +380,8 @@ $results = $wpdb->get_results("SELECT cat_id, cat_name, auto_toggle, show_images
|
|||
</tr>
|
||||
<tr>
|
||||
<td align="right">Sort order:</td>
|
||||
<td><select name="sort_order" size="1">
|
||||
<td>
|
||||
<select name="sort_order" size="1">
|
||||
<option value="name">Name</option>
|
||||
<option value="id">Id</option>
|
||||
<option value="url">URL</option>
|
||||
|
@ -388,7 +389,8 @@ $results = $wpdb->get_results("SELECT cat_id, cat_name, auto_toggle, show_images
|
|||
<option value="updated">Updated</option>
|
||||
<option value="rand">Random</option>
|
||||
</select>
|
||||
<input type="checkbox" name="sort_desc" value="N" /> Descending?<br /></td>
|
||||
<input type="checkbox" name="sort_desc" value="N" /> Descending?<br />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">Text/HTML</td>
|
||||
|
@ -413,9 +415,8 @@ $results = $wpdb->get_results("SELECT cat_id, cat_name, auto_toggle, show_images
|
|||
<tr>
|
||||
<td align="center" colspan="2"><input type="submit" name="submit" value="Add Category!" class="search" /></td>
|
||||
</tr>
|
||||
</form>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="wrap">
|
||||
|
@ -428,6 +429,4 @@ $results = $wpdb->get_results("SELECT cat_id, cat_name, auto_toggle, show_images
|
|||
} // end default
|
||||
} // end case
|
||||
?>
|
||||
</table>
|
||||
|
||||
<?php include('b2footer.php'); ?>
|
||||
|
|
Loading…
Reference in New Issue