Ticket #19638: comment_updates.patch
| File comment_updates.patch, 3.3 KB (added by dgwyer, 17 months ago) |
|---|
-
wp-admin/includes/dashboard.php
1266 1266 /** 1267 1267 * Displays a welcome panel to introduce users to WordPress. 1268 1268 * 1269 * @since 3.3 1269 * @since 3.3.0 1270 1270 */ 1271 1271 function wp_welcome_panel() { 1272 1272 global $wp_version; -
wp-includes/class-wp-editor.php
3 3 * Facilitates adding of the WordPress editor as used on the Write and Edit screens. 4 4 * 5 5 * @package WordPress 6 * @since 3.3 6 * @since 3.3.0 7 7 * 8 8 * Private, not included by default. See wp_editor() in wp-includes/general-template.php. 9 9 */ -
wp-includes/functions.wp-styles.php
45 45 * added to the same stylesheet $handle, they will be printed in the order 46 46 * they were added, i.e. the latter added styles can redeclare the previous. 47 47 * 48 * @since 3.3 48 * @since 3.3.0 49 49 * @see WP_Scripts::add_inline_style() 50 50 */ 51 51 function wp_add_inline_style( $handle, $data ) { -
wp-includes/general-template.php
1797 1797 * See http://core.trac.wordpress.org/ticket/19173 for more information. 1798 1798 * 1799 1799 * @see wp-includes/class-wp-editor.php 1800 * @since 3.3 1800 * @since 3.3.0 1801 1801 * 1802 1802 * @param string $content Initial content for the editor. 1803 1803 * @param string $editor_id HTML ID attribute value for the textarea and TinyMCE. Can only be /[a-z]+/. -
wp-includes/script-loader.php
656 656 /** 657 657 * Private, for use in *_footer_scripts hooks 658 658 * 659 * @since 3.3 659 * @since 3.3.0 660 660 */ 661 661 function _wp_footer_scripts() { 662 662 print_late_styles(); … … 713 713 /** 714 714 * Prints the styles that were queued too late for the HTML head. 715 715 * 716 * @since 3.3 716 * @since 3.3.0 717 717 */ 718 718 function print_late_styles() { 719 719 global $wp_styles, $concatenate_scripts; -
wp-includes/theme.php
2000 2000 /** 2001 2001 * Checks if a theme has been changed and runs 'after_switch_theme' hook on the next WP load 2002 2002 * 2003 * @since 3.3 2003 * @since 3.3.0 2004 2004 */ 2005 2005 function check_theme_switched() { 2006 2006 if ( false !== ( $old_theme = get_option( 'theme_switched' ) ) && !empty( $old_theme ) ) { -
wp-includes/widgets.php
1149 1149 * Handle sidebars config after theme change 1150 1150 * 1151 1151 * @access private 1152 * @since 3.3 1152 * @since 3.3.0 1153 1153 */ 1154 1154 function _wp_sidebars_changed() { 1155 1155 global $sidebars_widgets;
