Fix for not being able to select no parent, JVerber. Tweaked redirect after adding new category.

git-svn-id: https://develop.svn.wordpress.org/trunk@812 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2004-01-30 06:22:55 +00:00
parent e6b35cae09
commit 50cbcada35
1 changed files with 22 additions and 20 deletions

View File

@ -51,7 +51,7 @@ case 'addcat':
$wpdb->query("INSERT INTO $tablecategories (cat_ID, cat_name, category_nicename, category_description, category_parent) VALUES ('0', '$cat_name', '$category_nicename', '$category_description', $cat)");
header('Location: categories.php');
header('Location: categories.php#addcat');
break;
@ -92,9 +92,10 @@ case 'edit':
<p>Category name:<br />
<input type="text" name="cat_name" value="<?php echo $cat_name; ?>" /></p>
<p>Category parent:<br />
<select name='cat' class='postform'>
<select name='cat' class='postform'>
<option value='0'<?php if (!$category->category_parent) echo " selected='selected'"; ?>>None</option>
<?php wp_dropdown_cats($category->cat_ID, $category->category_parent); ?></p>
</select>
</select>
</p>
<p>Description:<br />
<textarea name="category_description" rows="5" cols="50" style="width: 97%;"><?php echo htmlentities($category->category_description); ?></textarea></p>
@ -134,22 +135,6 @@ default:
}
?>
<div class="wrap">
<h2>Add New Category</h2>
<form name="addcat" action="categories.php" method="post">
<p>Name:<br />
<input type="text" name="cat_name" value="" /></p>
<p>Category parent:<br />
<select name='cat' class='postform'>
<?php wp_dropdown_cats(); ?></p>
</select>
<p>Description: (optional) <br />
<textarea name="category_description" rows="5" cols="50" style="width: 97%;"></textarea></p>
<p><input type="hidden" name="action" value="addcat" /><input type="submit" name="submit" value="Add" class="search" /></p>
</form>
</div>
<div class="wrap">
<h2>Current Categories</h2>
<table width="100%" cellpadding="3" cellspacing="3">
@ -173,10 +158,27 @@ cat_rows();
</p>
</div>
<div class="wrap">
<h2>Add New Category</h2>
<form name="addcat" id="addcat" action="categories.php" method="post">
<p>Name:<br />
<input type="text" name="cat_name" value="" /></p>
<p>Category parent:<br />
<select name='cat' class='postform'>
<option value='0'>None</option>
<?php wp_dropdown_cats(); ?></p>
</select>
<p>Description: (optional) <br />
<textarea name="category_description" rows="5" cols="50" style="width: 97%;"></textarea></p>
<p><input type="hidden" name="action" value="addcat" /><input type="submit" name="submit" value="Add" class="search" /></p>
</form>
</div>
<?php
break;
}
/* </Categories> */
include('admin-footer.php');
?>
?>