Changeset 3983
- Timestamp:
- 07/05/2006 08:28:02 PM (19 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-page-form.php
r3932 r3983 38 38 39 39 <script type="text/javascript"> 40 <!-- 40 // <![CDATA[ 41 41 function focusit() { // focus on first input field 42 42 document.post.title.focus(); 43 43 } 44 44 addLoadEvent(focusit); 45 // -->45 // ]]> 46 46 </script> 47 47 <div id="poststuff"> … … 84 84 85 85 <?php if ( 0 != count( get_page_templates() ) ) { ?> 86 <fieldset id="page parent" class="dbx-box">86 <fieldset id="pagetemplate" class="dbx-box"> 87 87 <h3 class="dbx-handle"><?php _e('Page Template:') ?></h3> 88 88 <div class="dbx-content"><p><select name="page_template"> -
trunk/wp-admin/inline-uploading.php
r3946 r3983 285 285 <head> 286 286 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" /> 287 <title></title> 287 288 <meta http-equiv="imagetoolbar" content="no" /> 288 289 <script type="text/javascript"> 290 // <![CDATA[ 289 291 /* Define any variables we'll need, such as alternate URLs. */ 290 292 <?php echo $script; ?> … … 424 426 win.edInsertContent(win.edCanvas, h); 425 427 } 428 // ]]> 426 429 </script> 427 430 <style type="text/css"> … … 664 667 <?php elseif ( $action == 'upload' ) : ?> 665 668 <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__); ?>"> 667 670 <table style="width:99%;"> 668 671 <tr> … … 695 698 </tr> 696 699 </table> 697 </div>698 700 </form> 699 701 <?php elseif ( $action == 'links' ) : ?> -
trunk/wp-admin/moderation.php
r3946 r3983 144 144 <a href="<?php echo get_permalink($comment->comment_post_ID); ?>" title="<?php echo $post_title; ?>"><?php _e('View Post') ?></a> ] — 145 145 <?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> 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> 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> 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> 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> 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> 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> 150 150 </p> 151 151
Note: See TracChangeset
for help on using the changeset viewer.