WordPress.org

Make WordPress Core

Ticket #8026: 8026.2.patch

File 8026.2.patch, 1.5 KB (added by Viper007Bond, 5 years ago)

upload.php?detached=1

  • wp-admin/includes/template.php

     
    28292829                                <?php wp_nonce_field( 'find-posts', '_ajax_nonce', false ); ?> 
    28302830                                <label class="hidden" for="find-posts-input"><?php _e( 'Search' ); ?></label> 
    28312831                                <input type="text" id="find-posts-input" class="search-input" name="ps" value="" /> 
    2832                                 <input type="button" onClick="findPosts.send();" value="<?php _e( 'Search' ); ?>" class="button" /><br /> 
     2832                                <input type="button" onclick="findPosts.send();" value="<?php _e( 'Search' ); ?>" class="button" /><br /> 
    28332833 
    28342834                                <input type="radio" name="find-posts-what" id="find-posts-posts" checked="checked" value="posts" /> 
    28352835                                <label for="find-posts-posts"><?php _e( 'Posts' ); ?></label> 
     
    28392839                        <div id="find-posts-response"></div> 
    28402840                </div> 
    28412841                <div class="find-box-buttons"> 
    2842                         <input type="button" class="button" onClick="findPosts.close();" value="<?php _e('Close'); ?>" /> 
     2842                        <input type="button" class="button" onclick="findPosts.close();" value="<?php _e('Close'); ?>" /> 
    28432843                        <input id="find-posts-submit" type="submit" class="button" value="<?php _e('Select'); ?>" /> 
    28442844                </div> 
    28452845        </div> 
    28462846        <script type="text/javascript"> 
     2847        /* <![CDATA[ */  
    28472848        (function($){ 
    28482849                findPosts = { 
    28492850                        open : function(af_name, af_val) { 
     
    29382939                        }); 
    29392940                }); 
    29402941        })(jQuery); 
     2942        /* ]]> */  
    29412943        </script> 
    29422944<?php 
    29432945}