Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/export.php

    r17063 r18010  
    11<?php
    22/**
    3  * WordPress Export Administration Panel
     3 * WordPress Export Administration Screen
    44 *
    55 * @package WordPress
     
    4343    '<p>' . __('Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.') . '</p>' .
    4444    '<p><strong>' . __('For more information:') . '</strong></p>' .
    45     '<p>' . __('<a href="http://codex.wordpress.org/Tools_Export_SubPanel" target="_blank">Documentation on Export</a>') . '</p>' .
     45    '<p>' . __('<a href="http://codex.wordpress.org/Tools_Export_Screen" target="_blank">Documentation on Export</a>') . '</p>' .
    4646    '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
    4747);
     
    110110
    111111        $month = zeroise( $date->month, 2 );
    112         echo '<option value="' . $date->year . '-' . $month . '" />' . $wp_locale->get_month( $month ) . ' ' . $date->year . '</option>';
     112        echo '<option value="' . $date->year . '-' . $month . '">' . $wp_locale->get_month( $month ) . ' ' . $date->year . '</option>';
    113113    }
    114114}
Note: See TracChangeset for help on using the changeset viewer.