]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/export.php
WordPress 4.2.4
[autoinstalls/wordpress.git] / wp-admin / export.php
index 78ccf13e106e123417df5f3ee3b01ecc31a0844a..daba6e360e2df707b04779467d8e06b8ba7bdc7b 100644 (file)
@@ -24,7 +24,6 @@ $title = __('Export');
 function export_add_js() {
 ?>
 <script type="text/javascript">
-//<![CDATA[
        jQuery(document).ready(function($){
                var form = $('#export-filters'),
                        filters = form.find('.export-filters');
@@ -37,7 +36,6 @@ function export_add_js() {
                        }
                });
        });
-//]]>
 </script>
 <?php
 }
@@ -52,7 +50,7 @@ get_current_screen()->add_help_tab( array(
 
 get_current_screen()->set_help_sidebar(
        '<p><strong>' . __('For more information:') . '</strong></p>' .
-       '<p>' . __('<a href="http://codex.wordpress.org/Tools_Export_Screen" target="_blank">Documentation on Export</a>') . '</p>' .
+       '<p>' . __('<a href="https://codex.wordpress.org/Tools_Export_Screen" target="_blank">Documentation on Export</a>') . '</p>' .
        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 );
 
@@ -62,7 +60,7 @@ if ( isset( $_GET['download'] ) ) {
 
        if ( ! isset( $_GET['content'] ) || 'all' == $_GET['content'] ) {
                $args['content'] = 'all';
-       } else if ( 'posts' == $_GET['content'] ) {
+       } elseif ( 'posts' == $_GET['content'] ) {
                $args['content'] = 'post';
 
                if ( $_GET['cat'] )
@@ -78,7 +76,7 @@ if ( isset( $_GET['download'] ) ) {
 
                if ( $_GET['post_status'] )
                        $args['status'] = $_GET['post_status'];
-       } else if ( 'pages' == $_GET['content'] ) {
+       } elseif ( 'pages' == $_GET['content'] ) {
                $args['content'] = 'page';
 
                if ( $_GET['page_author'] )
@@ -152,7 +150,7 @@ function export_date_options( $post_type = 'post' ) {
 <p><?php _e('Once you&#8217;ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.'); ?></p>
 
 <h3><?php _e( 'Choose what to export' ); ?></h3>
-<form action="" method="get" id="export-filters">
+<form method="get" id="export-filters">
 <input type="hidden" name="download" value="true" />
 <p><label><input type="radio" name="content" value="all" checked="checked" /> <?php _e( 'All content' ); ?></label></p>
 <p class="description"><?php _e( 'This will contain all of your posts, pages, comments, custom fields, terms, navigation menus and custom posts.' ); ?></p>