diff --git a/wp-admin/custom-background.php b/wp-admin/custom-background.php index 77cd50900..8ae4967b7 100644 --- a/wp-admin/custom-background.php +++ b/wp-admin/custom-background.php @@ -9,7 +9,7 @@ /** * The custom background class. * - * @since 3.0 + * @since 3.0.0 * @package WordPress * @subpackage Administration */ @@ -28,7 +28,7 @@ class Custom_Background { * Callback for header div. * * @var callback - * @since 3.0 + * @since 3.0.0 * @access private */ var $admin_image_div_callback; @@ -36,7 +36,7 @@ class Custom_Background { /** * PHP4 Constructor - Register administration header callback. * - * @since 3.0 + * @since 3.0.0 * @param callback $admin_header_callback * @param callback $admin_image_div_callback Optional custom image div output callback. * @return Custom_Background @@ -49,7 +49,7 @@ class Custom_Background { /** * Set up the hooks for the Custom Background admin page. * - * @since 3.0 + * @since 3.0.0 */ function init() { if ( ! current_user_can('switch_themes') ) @@ -68,7 +68,7 @@ class Custom_Background { /** * Set up the enqueue for the CSS & JavaScript files. * - * @since 3.0 + * @since 3.0.0 */ function admin_load() { wp_enqueue_script('custom-background'); @@ -78,7 +78,7 @@ class Custom_Background { /** * Execute custom background modification. * - * @since 3.0 + * @since 3.0.0 */ function take_action() { @@ -132,7 +132,7 @@ class Custom_Background { /** * Display the custom background page. * - * @since 3.0 + * @since 3.0.0 */ function admin_page() { ?> @@ -252,7 +252,7 @@ class Custom_Background { /** * Handle a Image upload for the background image. * - * @since 3.0 + * @since 3.0.0 */ function handle_upload() { diff --git a/wp-admin/custom-header.php b/wp-admin/custom-header.php index 8747d5fca..de571dd2d 100644 --- a/wp-admin/custom-header.php +++ b/wp-admin/custom-header.php @@ -9,7 +9,7 @@ /** * The custom header image class. * - * @since 3.0 + * @since 3.0.0 * @package WordPress * @subpackage Administration */ @@ -19,7 +19,7 @@ class Custom_Image_Header { * Callback for administration header. * * @var callback - * @since 3.0 + * @since 3.0.0 * @access private */ var $admin_header_callback; @@ -28,7 +28,7 @@ class Custom_Image_Header { * Callback for header div. * * @var callback - * @since 3.0 + * @since 3.0.0 * @access private */ var $admin_image_div_callback; @@ -38,7 +38,7 @@ class Custom_Image_Header { /** * PHP4 Constructor - Register administration header callback. * - * @since 3.0 + * @since 3.0.0 * @param callback $admin_header_callback * @param callback $admin_image_div_callback Optional custom image div output callback. * @return Custom_Image_Header @@ -51,7 +51,7 @@ class Custom_Image_Header { /** * Set up the hooks for the Custom Header admin page. * - * @since 3.0 + * @since 3.0.0 */ function init() { if ( ! current_user_can('switch_themes') ) @@ -69,7 +69,7 @@ class Custom_Image_Header { /** * Get the current step. * - * @since 3.0 + * @since 3.0.0 * * @return int Current step */ @@ -87,7 +87,7 @@ class Custom_Image_Header { /** * Set up the enqueue for the JavaScript files. * - * @since 3.0 + * @since 3.0.0 */ function js_includes() { $step = $this->step(); @@ -115,7 +115,7 @@ class Custom_Image_Header { /** * Execute custom header modification. * - * @since 3.0 + * @since 3.0.0 */ function take_action() { if ( ! current_user_can('switch_themes') ) @@ -210,7 +210,7 @@ class Custom_Image_Header { /** * Execute Javascript depending on step. * - * @since 3.0 + * @since 3.0.0 */ function js() { $step = $this->step(); @@ -223,7 +223,7 @@ class Custom_Image_Header { /** * Display Javascript based on Step 1. * - * @since 3.0 + * @since 3.0.0 */ function js_1() { ?>