Make WordPress Core

Ticket #60224: 60224.patch

File 60224.patch, 3.4 KB (added by upadalavipul, 13 months ago)
  • wp-content/themes/twentyfifteen/inc/back-compat.php

     
    3232 * Twenty Fifteen on WordPress versions prior to 4.1.
    3333 *
    3434 * @since Twenty Fifteen 1.0
     35 *
     36 * @global string $wp_version The WordPress version string.
    3537 */
    3638function twentyfifteen_upgrade_notice() {
    3739        printf(
     
    4850 * Prevent the Customizer from being loaded on WordPress versions prior to 4.1.
    4951 *
    5052 * @since Twenty Fifteen 1.0
     53 *
     54 * @global string $wp_version The WordPress version string.
    5155 */
    5256function twentyfifteen_customize() {
    5357        wp_die(
     
    6872 * Prevent the Theme Preview from being loaded on WordPress versions prior to 4.1.
    6973 *
    7074 * @since Twenty Fifteen 1.0
     75 *
     76 * @global string $wp_version The WordPress version string.
    7177 */
    7278function twentyfifteen_preview() {
    7379        if ( isset( $_GET['preview'] ) ) {
  • wp-content/themes/twentyfourteen/inc/back-compat.php

     
    3232 * Twenty Fourteen on WordPress versions prior to 3.6.
    3333 *
    3434 * @since Twenty Fourteen 1.0
     35 *
     36 * @global string $wp_version The WordPress version string.
    3537 */
    3638function twentyfourteen_upgrade_notice() {
    3739        printf(
     
    4850 * Prevent the Customizer from being loaded on WordPress versions prior to 3.6.
    4951 *
    5052 * @since Twenty Fourteen 1.0
     53 *
     54 * @global string $wp_version The WordPress version string.
    5155 */
    5256function twentyfourteen_customize() {
    5357        wp_die(
     
    6872 * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4.
    6973 *
    7074 * @since Twenty Fourteen 1.0
     75 *
     76 * @global string $wp_version The WordPress version string.
    7177 */
    7278function twentyfourteen_preview() {
    7379        if ( isset( $_GET['preview'] ) ) {
  • wp-content/themes/twentythirteen/inc/back-compat.php

     
    3232 * Twenty Thirteen on WordPress versions prior to 3.6.
    3333 *
    3434 * @since Twenty Thirteen 1.0
     35 *
     36 * @global string $wp_version The WordPress version string.
    3537 */
    3638function twentythirteen_upgrade_notice() {
    3739        printf(
     
    4850 * Prevent the Customizer from being loaded on WordPress versions prior to 3.6.
    4951 *
    5052 * @since Twenty Thirteen 1.0
     53 *
     54 * @global string $wp_version The WordPress version string.
    5155 */
    5256function twentythirteen_customize() {
    5357        wp_die(
     
    6872 * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4.
    6973 *
    7074 * @since Twenty Thirteen 1.0
     75 *
     76 * @global string $wp_version The WordPress version string.
    7177 */
    7278function twentythirteen_preview() {
    7379        if ( isset( $_GET['preview'] ) ) {
  • wp-includes/rss.php

     
    2323 *
    2424 * @since 2.3.0
    2525 * @deprecated 3.0.0
     26 *
     27 * @global string $wp_version The WordPress version string.
    2628 */
    2729do_action( 'load_feed_engine' );
    2830