XHTML validation fixes and <!--more--> typo correction for Reading Options page. Props JeremyVisser. fixes #3709

git-svn-id: http://svn.automattic.com/wordpress/branches/2.1@4829 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2007-01-29 16:44:47 +00:00
parent 1f46a9c3ae
commit b86f82e435

View File

@ -40,7 +40,6 @@ include('admin-header.php');
</p> </p>
</div> </div>
<?php endif; ?> <?php endif; ?>
</fieldset>
</td> </td>
</tr> </tr>
</table> </table>
@ -54,7 +53,6 @@ include('admin-header.php');
<th width="33%" scope="row"><?php _e('Show at most:') ?></th> <th width="33%" scope="row"><?php _e('Show at most:') ?></th>
<td> <td>
<input name="posts_per_page" type="text" id="posts_per_page" value="<?php form_option('posts_per_page'); ?>" size="3" /> <?php _e('posts') ?> <input name="posts_per_page" type="text" id="posts_per_page" value="<?php form_option('posts_per_page'); ?>" size="3" /> <?php _e('posts') ?>
</select>
</td> </td>
</tr> </tr>
</table> </table>
@ -72,7 +70,7 @@ include('admin-header.php');
<td> <td>
<p><label><input name="rss_use_excerpt" type="radio" value="0" <?php checked(0, get_option('rss_use_excerpt')); ?> /> <?php _e('Full text') ?></label><br /> <p><label><input name="rss_use_excerpt" type="radio" value="0" <?php checked(0, get_option('rss_use_excerpt')); ?> /> <?php _e('Full text') ?></label><br />
<label><input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_option('rss_use_excerpt')); ?> /> <?php _e('Summary') ?></label></p> <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_option('rss_use_excerpt')); ?> /> <?php _e('Summary') ?></label></p>
<p><?php _e('Note: If you use the <code>&lt;--more--&gt;</code> feature, it will cut off posts in RSS feeds.'); ?></p> <p><?php _e('Note: If you use the <code>&lt;!--more--&gt;</code> feature, it will cut off posts in RSS feeds.'); ?></p>
</td> </td>
</tr> </tr>
</table> </table>