Make WordPress Core

Changeset 3983


Ignore:
Timestamp:
07/05/2006 08:28:02 PM (19 years ago)
Author:
ryan
Message:

Validation fixes from leftjustified. fixes #2907

Location:
trunk/wp-admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-page-form.php

    r3932 r3983  
    3838
    3939<script type="text/javascript">
    40 <!--
     40// <![CDATA[
    4141function focusit() { // focus on first input field
    4242    document.post.title.focus();
    4343}
    4444addLoadEvent(focusit);
    45 //-->
     45// ]]>
    4646</script>
    4747<div id="poststuff">
     
    8484
    8585<?php if ( 0 != count( get_page_templates() ) ) { ?>
    86 <fieldset id="pageparent" class="dbx-box">
     86<fieldset id="pagetemplate" class="dbx-box">
    8787<h3 class="dbx-handle"><?php _e('Page Template:') ?></h3>
    8888<div class="dbx-content"><p><select name="page_template">
  • trunk/wp-admin/inline-uploading.php

    r3946 r3983  
    285285<head>
    286286<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" />
     287<title></title>
    287288<meta http-equiv="imagetoolbar" content="no" />
    288289<script type="text/javascript">
     290// <![CDATA[
    289291/* Define any variables we'll need, such as alternate URLs. */
    290292<?php echo $script; ?>
     
    424426        win.edInsertContent(win.edCanvas, h);
    425427}
     428// ]]>
    426429</script>
    427430<style type="text/css">
     
    664667<?php elseif ( $action == 'upload' ) : ?>
    665668<div class="tip"></div>
    666 <form enctype="multipart/form-data" id="uploadForm" method="POST" action="<?php echo basename(__FILE__); ?>">
     669<form enctype="multipart/form-data" id="uploadForm" method="post" action="<?php echo basename(__FILE__); ?>">
    667670<table style="width:99%;">
    668671<tr>
     
    695698</tr>
    696699</table>
    697 </div>
    698700</form>
    699701<?php elseif ( $action == 'links' ) : ?>
  • trunk/wp-admin/moderation.php

    r3946 r3983  
    144144<a href="<?php echo get_permalink($comment->comment_post_ID); ?>" title="<?php echo $post_title; ?>"><?php _e('View Post') ?></a> ] &#8212;
    145145 <?php _e('Bulk action:') ?>
    146     <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment[<?php echo $comment->comment_ID; ?>]-approve" value="approve" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-approve"><?php _e('Approve') ?></label> &nbsp;
    147     <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment[<?php echo $comment->comment_ID; ?>]-spam" value="spam" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-spam"><?php _e('Spam') ?></label> &nbsp;
    148     <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment[<?php echo $comment->comment_ID; ?>]-delete" value="delete" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-delete"><?php _e('Delete') ?></label> &nbsp;
    149     <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment[<?php echo $comment->comment_ID; ?>]-nothing" value="later" checked="checked" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-nothing"><?php _e('Defer until later') ?></label>
     146    <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment-<?php echo $comment->comment_ID; ?>-approve" value="approve" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-approve"><?php _e('Approve') ?></label> &nbsp;
     147    <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment-<?php echo $comment->comment_ID; ?>-spam" value="spam" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-spam"><?php _e('Spam') ?></label> &nbsp;
     148    <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment-<?php echo $comment->comment_ID; ?>-delete" value="delete" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-delete"><?php _e('Delete') ?></label> &nbsp;
     149    <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment-<?php echo $comment->comment_ID; ?>-nothing" value="later" checked="checked" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-nothing"><?php _e('Defer until later') ?></label>
    150150    </p>
    151151
Note: See TracChangeset for help on using the changeset viewer.