Changeset 3982 for branches/2.0/wp-admin/inline-uploading.php
- Timestamp:
- 07/05/2006 08:21:45 PM (20 years ago)
- File:
-
- 1 edited
-
branches/2.0/wp-admin/inline-uploading.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-admin/inline-uploading.php
r3937 r3982 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}\">'; … … 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); … … 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; ?> … … 439 441 win.edInsertContent(win.edCanvas, h); 440 442 } 443 // ]]> 441 444 </script> 442 445 <style type="text/css"> … … 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> … … 710 713 </tr> 711 714 </table> 712 </div>713 715 </form> 714 716 <?php elseif ( $action == 'links' ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.