Update of /cvsroot/php-blog/serendipity/include/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14325
Modified Files:
category.inc.php
Log Message:
- Forgot to close td tags correctly
Index: category.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/admin/category.inc.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- category.inc.php 15 Dec 2004 19:46:35 -0000 1.3
+++ category.inc.php 15 Dec 2004 19:50:28 -0000 1.4
@@ -122,18 +122,18 @@
<form method="POST" name="serendipityCategory">
<table cellpadding="5" width="100%">
<tr>
- <td><?php echo NAME; ?></th>
+ <td><?php echo NAME; ?></td>
<td><input type="text" name="serendipity[cat][name]" value="<?php echo isset($this_cat['category_name']) ? htmlspecialchars($this_cat['category_name']) : ''; ?>" /></td>
<td rowspan="5" align="center" valign="middle" width="200" style="border: 1px solid #ccc"><img src="<?php echo isset($this_cat['category_icon']) ? $this_cat['category_icon'] : '' ?>" id="imagepreview" <?php echo empty($this_cat['category_icon']) ? 'style="display: none' : '' ?>"></td>
</tr>
<tr>
- <td><?php echo DESCRIPTION; ?></th>
+ <td><?php echo DESCRIPTION; ?></td>
<td><input type="text" name="serendipity[cat][description]" value="<?php echo isset($this_cat['category_description']) ? htmlspecialchars($this_cat['category_description']) : ''; ?>" /></td>
</tr>
<tr>
- <td><?php echo IMAGE; ?></th>
+ <td><?php echo IMAGE; ?></td>
<td>
<script type="text/javascript" language="JavaScript" src="serendipity_editor.js"></script>
<input type="text" id="img_icon" name="serendipity[cat][icon]" value="<?php echo isset($this_cat['category_icon']) ? htmlspecialchars($this_cat['category_icon']) : ''; ?>" onchange="document.getElementById('imagepreview').src = this.value; document.getElementById('imagepreview').style.display = '';" />
@@ -142,11 +142,11 @@
</tr>
<tr>
- <td><label for="all_authors"><?php echo ALL_AUTHORS; ?></label></th>
+ <td><label for="all_authors"><?php echo ALL_AUTHORS; ?></label></td>
<td><input id="all_authors" type="checkbox" name="serendipity[cat][all_authors]" value="true" <?php echo (isset($this_cat['authorid']) && $this_cat['authorid'] == '0') ? 'checked="checked"' : ''; ?> /></td>
</tr>
<tr>
- <td><label for="parent_cat"><?php echo PARENT_CATEGORY; ?></label></th>
+ <td><label for="parent_cat"><?php echo PARENT_CATEGORY; ?></label></td>
<td>
<select id="parent_cat" name="serendipity[cat][parent_cat]">
<option value="0"<?php if ( (int)$serendipity['GET']['cid'] == 0 ) echo ' selected="selected"'; ?>>[ <?php echo NO_CATEGORY; ?> ]</option>
|