Ticket #60224: 60224.patch
File 60224.patch, 3.4 KB (added by , 13 months ago) |
---|
-
wp-content/themes/twentyfifteen/inc/back-compat.php
32 32 * Twenty Fifteen on WordPress versions prior to 4.1. 33 33 * 34 34 * @since Twenty Fifteen 1.0 35 * 36 * @global string $wp_version The WordPress version string. 35 37 */ 36 38 function twentyfifteen_upgrade_notice() { 37 39 printf( … … 48 50 * Prevent the Customizer from being loaded on WordPress versions prior to 4.1. 49 51 * 50 52 * @since Twenty Fifteen 1.0 53 * 54 * @global string $wp_version The WordPress version string. 51 55 */ 52 56 function twentyfifteen_customize() { 53 57 wp_die( … … 68 72 * Prevent the Theme Preview from being loaded on WordPress versions prior to 4.1. 69 73 * 70 74 * @since Twenty Fifteen 1.0 75 * 76 * @global string $wp_version The WordPress version string. 71 77 */ 72 78 function twentyfifteen_preview() { 73 79 if ( isset( $_GET['preview'] ) ) { -
wp-content/themes/twentyfourteen/inc/back-compat.php
32 32 * Twenty Fourteen on WordPress versions prior to 3.6. 33 33 * 34 34 * @since Twenty Fourteen 1.0 35 * 36 * @global string $wp_version The WordPress version string. 35 37 */ 36 38 function twentyfourteen_upgrade_notice() { 37 39 printf( … … 48 50 * Prevent the Customizer from being loaded on WordPress versions prior to 3.6. 49 51 * 50 52 * @since Twenty Fourteen 1.0 53 * 54 * @global string $wp_version The WordPress version string. 51 55 */ 52 56 function twentyfourteen_customize() { 53 57 wp_die( … … 68 72 * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4. 69 73 * 70 74 * @since Twenty Fourteen 1.0 75 * 76 * @global string $wp_version The WordPress version string. 71 77 */ 72 78 function twentyfourteen_preview() { 73 79 if ( isset( $_GET['preview'] ) ) { -
wp-content/themes/twentythirteen/inc/back-compat.php
32 32 * Twenty Thirteen on WordPress versions prior to 3.6. 33 33 * 34 34 * @since Twenty Thirteen 1.0 35 * 36 * @global string $wp_version The WordPress version string. 35 37 */ 36 38 function twentythirteen_upgrade_notice() { 37 39 printf( … … 48 50 * Prevent the Customizer from being loaded on WordPress versions prior to 3.6. 49 51 * 50 52 * @since Twenty Thirteen 1.0 53 * 54 * @global string $wp_version The WordPress version string. 51 55 */ 52 56 function twentythirteen_customize() { 53 57 wp_die( … … 68 72 * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4. 69 73 * 70 74 * @since Twenty Thirteen 1.0 75 * 76 * @global string $wp_version The WordPress version string. 71 77 */ 72 78 function twentythirteen_preview() { 73 79 if ( isset( $_GET['preview'] ) ) { -
wp-includes/rss.php
23 23 * 24 24 * @since 2.3.0 25 25 * @deprecated 3.0.0 26 * 27 * @global string $wp_version The WordPress version string. 26 28 */ 27 29 do_action( 'load_feed_engine' ); 28 30