Ticket #2907: admin-validation-cleanup.diff
File admin-validation-cleanup.diff, 6.5 KB (added by , 19 years ago) |
---|
-
wp-admin/edit-form-advanced.php
156 156 </fieldset> 157 157 158 158 <script type="text/javascript"> 159 <!-- 159 // <![CDATA[ 160 160 edCanvas = document.getElementById('content'); 161 161 <?php if ( user_can_richedit() ) : ?> 162 162 // This code is meant to allow tabbing from Title to Post (TinyMCE). … … 191 191 } 192 192 } 193 193 <?php endif; ?> 194 // -->194 // ]]> 195 195 </script> 196 196 197 197 <?php echo $form_pingback ?> -
wp-admin/edit-page-form.php
37 37 <input type="hidden" name="post_status" value="static" /> 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"> 48 48 … … 74 74 </fieldset> 75 75 76 76 <?php if ( 0 != count( get_page_templates() ) ) { ?> 77 <fieldset id="page parent" class="dbx-box">77 <fieldset id="pagetemplate" class="dbx-box"> 78 78 <h3 class="dbx-handle"><?php _e('Page Template:') ?></h3> 79 79 <div class="dbx-content"><p><select name="page_template"> 80 80 <option value='default'><?php _e('Default Template'); ?></option> -
wp-admin/inline-uploading.php
238 238 $xpadding = (128 - $image['uwidth']) / 2; 239 239 $ypadding = (96 - $image['uheight']) / 2; 240 240 $style .= "#target{$ID} img { padding: {$ypadding}px {$xpadding}px; }\n"; 241 $title = htmlentities($image['post_title'], ENT_QUOTES);241 $title = wp_specialchars($image['post_title'], ENT_QUOTES); 242 242 $script .= "aa[{$ID}] = '<a id=\"p{$ID}\" rel=\"attachment\" class=\"imagelink\" href=\"$href\" onclick=\"doPopup({$ID});return false;\" title=\"{$title}\">'; 243 243 ab[{$ID}] = '<a class=\"imagelink\" href=\"{$image['guid']}\" onclick=\"doPopup({$ID});return false;\" title=\"{$title}\">'; 244 244 imga[{$ID}] = '<img id=\"image{$ID}\" src=\"$src\" alt=\"{$title}\" $height_width />'; … … 258 258 </div> 259 259 "; 260 260 } else { 261 $title = htmlentities($attachment['post_title'], ENT_QUOTES);261 $title = wp_specialchars($attachment['post_title'], ENT_QUOTES); 262 262 $filename = basename($attachment['guid']); 263 263 $icon = get_attachment_icon($ID); 264 264 $toggle_icon = "<a id=\"I{$ID}\" onclick=\"toggleOtherIcon({$ID});return false;\" href=\"javascript:void()\">$__using_title</a>"; … … 299 299 <html xmlns="http://www.w3.org/1999/xhtml"> 300 300 <head> 301 301 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" /> 302 <title></title> 302 303 <meta http-equiv="imagetoolbar" content="no" /> 303 304 <script type="text/javascript"> 305 // <![CDATA[ 304 306 /* Define any variables we'll need, such as alternate URLs. */ 305 307 <?php echo $script; ?> 306 308 function htmldecode(st) { … … 438 440 else 439 441 win.edInsertContent(win.edCanvas, h); 440 442 } 443 // ]]> 441 444 </script> 442 445 <style type="text/css"> 443 446 <?php if ( $action == 'links' ) : ?> … … 678 681 </div> 679 682 <?php elseif ( $action == 'upload' ) : ?> 680 683 <div class="tip"></div> 681 <form enctype="multipart/form-data" id="uploadForm" method=" POST" action="<?php echo basename(__FILE__); ?>">684 <form enctype="multipart/form-data" id="uploadForm" method="post" action="<?php echo basename(__FILE__); ?>"> 682 685 <table style="width:99%;"> 683 686 <tr> 684 687 <th scope="row" align="right"><label for="upload"><?php _e('File:'); ?></label></th> … … 709 712 </td> 710 713 </tr> 711 714 </table> 712 </div>713 715 </form> 714 716 <?php elseif ( $action == 'links' ) : ?> 715 717 <div id="links"> -
wp-admin/moderation.php
152 152 <a href="<?php echo get_permalink($comment->comment_post_ID); ?>"><?php _e('View Post') ?></a> | 153 153 <?php 154 154 echo " <a href=\"" . wp_nonce_url("post.php?action=deletecomment&p=".$comment->comment_post_ID."&comment=".$comment->comment_ID, 'delete-comment_' . $comment->comment_ID) . "\" onclick=\"return deleteSomething( 'comment', $comment->comment_ID, '" . __("You are about to delete this comment.\\n"Cancel" to stop, "OK" to delete.") . "' );\">" . __('Delete just this comment') . "</a> | "; ?> <?php _e('Bulk action:') ?> 155 <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>156 <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>157 <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>158 <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>155 <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> 156 <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> 157 <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> 158 <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> 159 159 </p> 160 160 161 161 </li>