Make WordPress Core

Ticket #41835: 41835.diff

File 41835.diff, 5.7 KB (added by Presskopp, 8 years ago)
  • src/wp-admin/js/widgets/media-widgets.js

     
    10691069
    10701070                /*
    10711071                 * Create a container element for the widget control (Backbone.View).
    1072                  * This is inserted into the DOM immediately before the the .widget-content
     1072                 * This is inserted into the DOM immediately before the .widget-content
    10731073                 * element because the contents of this element are essentially "managed"
    10741074                 * by PHP, where each widget update cause the entire element to be emptied
    10751075                 * and replaced with the rendered output of WP_Widget::form() which is
  • src/wp-admin/js/widgets/text-widgets.js

     
    375375
    376376                /*
    377377                 * Create a container element for the widget control fields.
    378                  * This is inserted into the DOM immediately before the the .widget-content
     378                 * This is inserted into the DOM immediately before the .widget-content
    379379                 * element because the contents of this element are essentially "managed"
    380380                 * by PHP, where each widget update cause the entire element to be emptied
    381381                 * and replaced with the rendered output of WP_Widget::form() which is
  • src/wp-content/themes/twentyseventeen/assets/js/html5.js

     
    2121  /** Name of the expando, to work with multiple documents or to re-shiv one document */
    2222  var expando = '_html5shiv';
    2323
    24   /** The id for the the documents expando */
     24  /** The id for the documents expando */
    2525  var expanID = 0;
    2626
    2727  /** Cached data for each document */
  • src/wp-content/themes/twentysixteen/js/html5.js

     
    2121  /** Name of the expando, to work with multiple documents or to re-shiv one document */
    2222  var expando = '_html5shiv';
    2323
    24   /** The id for the the documents expando */
     24  /** The id for the documents expando */
    2525  var expanID = 0;
    2626
    2727  /** Cached data for each document */
  • src/wp-includes/class-simplepie.php

     
    802802        }
    803803
    804804        /**
    805          * Set the the default timeout for fetching remote feeds
     805         * Set the default timeout for fetching remote feeds
    806806         *
    807807         * This allows you to change the maximum time the feed's server to respond
    808808         * and send the feed back.
  • src/wp-includes/class-wp-customize-manager.php

     
    41074107
    41084108                /*
    41094109                 * Static Front Page
    4110                  * See also https://core.trac.wordpress.org/ticket/19627 which introduces the the static-front-page theme_support.
     4110                 * See also https://core.trac.wordpress.org/ticket/19627 which introduces the static-front-page theme_support.
    41114111                 * The following replicates behavior from options-reading.php.
    41124112                 */
    41134113
  • src/wp-includes/ID3/module.audio-video.matroska.php

     
    7272define('EBML_ID_FILEDESCRIPTION',               0x067E); //         [46][7E] -- A human-friendly name for the attached file.
    7373define('EBML_ID_FILEUID',                       0x06AE); //         [46][AE] -- Unique ID representing the file, as random as possible.
    7474define('EBML_ID_CONTENTENCALGO',                0x07E1); //         [47][E1] -- The encryption algorithm used. The value '0' means that the contents have not been encrypted but only signed. Predefined values:
    75 define('EBML_ID_CONTENTENCKEYID',               0x07E2); //         [47][E2] -- For public key algorithms this is the ID of the public key the the data was encrypted with.
     75define('EBML_ID_CONTENTENCKEYID',               0x07E2); //         [47][E2] -- For public key algorithms this is the ID of the public key the data was encrypted with.
    7676define('EBML_ID_CONTENTSIGNATURE',              0x07E3); //         [47][E3] -- A cryptographic signature of the contents.
    7777define('EBML_ID_CONTENTSIGKEYID',               0x07E4); //         [47][E4] -- This is the ID of the private key the data was signed with.
    7878define('EBML_ID_CONTENTSIGALGO',                0x07E5); //         [47][E5] -- The algorithm used for the signature. A value of '0' means that the contents have not been signed but only encrypted. Predefined values:
  • src/wp-includes/theme.php

     
    29042904                /*
    29052905                 * The following re-formulates the logic from wp_trash_post() as done in
    29062906                 * wp_publish_post(). The reason for bypassing wp_trash_post() is that it
    2907                  * will mutate the the post_content and the post_name when they should be
     2907                 * will mutate the post_content and the post_name when they should be
    29082908                 * untouched.
    29092909                 */
    29102910                if ( ! EMPTY_TRASH_DAYS ) {