Update some @since. Props dgwyer. fixes #19638

git-svn-id: http://svn.automattic.com/wordpress/trunk@19673 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2012-01-04 19:03:33 +00:00
parent 8323ba5cc7
commit d1ba11c7d1
7 changed files with 8 additions and 8 deletions

View File

@ -1264,7 +1264,7 @@ function wp_dashboard_empty() {}
/**
* Displays a welcome panel to introduce users to WordPress.
*
* @since 3.3
* @since 3.3.0
*/
function wp_welcome_panel() {
global $wp_version;

View File

@ -3,7 +3,7 @@
* Facilitates adding of the WordPress editor as used on the Write and Edit screens.
*
* @package WordPress
* @since 3.3
* @since 3.3.0
*
* Private, not included by default. See wp_editor() in wp-includes/general-template.php.
*/

View File

@ -47,7 +47,7 @@ function wp_print_styles( $handles = false ) {
* added to the same stylesheet $handle, they will be printed in the order
* they were added, i.e. the latter added styles can redeclare the previous.
*
* @since 3.3
* @since 3.3.0
* @see WP_Scripts::add_inline_style()
*/
function wp_add_inline_style( $handle, $data ) {

View File

@ -1797,7 +1797,7 @@ function wp_default_editor() {
* See http://core.trac.wordpress.org/ticket/19173 for more information.
*
* @see wp-includes/class-wp-editor.php
* @since 3.3
* @since 3.3.0
*
* @param string $content Initial content for the editor.
* @param string $editor_id HTML ID attribute value for the textarea and TinyMCE. Can only be /[a-z]+/.

View File

@ -656,7 +656,7 @@ function wp_print_head_scripts() {
/**
* Private, for use in *_footer_scripts hooks
*
* @since 3.3
* @since 3.3.0
*/
function _wp_footer_scripts() {
print_late_styles();
@ -713,7 +713,7 @@ function print_admin_styles() {
/**
* Prints the styles that were queued too late for the HTML head.
*
* @since 3.3
* @since 3.3.0
*/
function print_late_styles() {
global $wp_styles, $concatenate_scripts;

View File

@ -2000,7 +2000,7 @@ add_action( 'delete_attachment', '_delete_attachment_theme_mod' );
/**
* Checks if a theme has been changed and runs 'after_switch_theme' hook on the next WP load
*
* @since 3.3
* @since 3.3.0
*/
function check_theme_switched() {
if ( false !== ( $old_theme = get_option( 'theme_switched' ) ) && !empty( $old_theme ) ) {

View File

@ -1149,7 +1149,7 @@ function _get_widget_id_base($id) {
* Handle sidebars config after theme change
*
* @access private
* @since 3.3
* @since 3.3.0
*/
function _wp_sidebars_changed() {
global $sidebars_widgets;