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;" >between</th>
|
||||||
<th valign="top" style="border-bottom: 1px dotted #9C9A9C; border-right: 1px dotted #9C9A9C;" >after</th>
|
<th valign="top" style="border-bottom: 1px dotted #9C9A9C; border-right: 1px dotted #9C9A9C;" >after</th>
|
||||||
</tr>
|
</tr>
|
||||||
<form name="cats" method="post">
|
|
||||||
<input type="hidden" name="cat_id" value="" />
|
<input type="hidden" name="cat_id" value="" />
|
||||||
<input type="hidden" name="action" value="" />
|
<input type="hidden" name="action" value="" />
|
||||||
<?php
|
<?php
|
||||||
|
@ -353,9 +352,10 @@ $results = $wpdb->get_results("SELECT cat_id, cat_name, auto_toggle, show_images
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
</table>
|
|
||||||
</form>
|
</form>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
|
@ -380,7 +380,8 @@ $results = $wpdb->get_results("SELECT cat_id, cat_name, auto_toggle, show_images
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="right">Sort order:</td>
|
<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="name">Name</option>
|
||||||
<option value="id">Id</option>
|
<option value="id">Id</option>
|
||||||
<option value="url">URL</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="updated">Updated</option>
|
||||||
<option value="rand">Random</option>
|
<option value="rand">Random</option>
|
||||||
</select>
|
</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>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center">Text/HTML</td>
|
<td align="center">Text/HTML</td>
|
||||||
|
@ -413,9 +415,8 @@ $results = $wpdb->get_results("SELECT cat_id, cat_name, auto_toggle, show_images
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" colspan="2"><input type="submit" name="submit" value="Add Category!" class="search" /></td>
|
<td align="center" colspan="2"><input type="submit" name="submit" value="Add Category!" class="search" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
</form>
|
|
||||||
</table>
|
</table>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
|
@ -428,6 +429,4 @@ $results = $wpdb->get_results("SELECT cat_id, cat_name, auto_toggle, show_images
|
||||||
} // end default
|
} // end default
|
||||||
} // end case
|
} // end case
|
||||||
?>
|
?>
|
||||||
</table>
|
|
||||||
|
|
||||||
<?php include('b2footer.php'); ?>
|
<?php include('b2footer.php'); ?>
|
||||||
|
|
Loading…
Reference in New Issue