Ticket #41835: 41835.diff
File 41835.diff, 5.7 KB (added by , 8 years ago) |
---|
-
src/wp-admin/js/widgets/media-widgets.js
1069 1069 1070 1070 /* 1071 1071 * Create a container element for the widget control (Backbone.View). 1072 * This is inserted into the DOM immediately before the the.widget-content1072 * This is inserted into the DOM immediately before the .widget-content 1073 1073 * element because the contents of this element are essentially "managed" 1074 1074 * by PHP, where each widget update cause the entire element to be emptied 1075 1075 * and replaced with the rendered output of WP_Widget::form() which is -
src/wp-admin/js/widgets/text-widgets.js
375 375 376 376 /* 377 377 * Create a container element for the widget control fields. 378 * This is inserted into the DOM immediately before the the.widget-content378 * This is inserted into the DOM immediately before the .widget-content 379 379 * element because the contents of this element are essentially "managed" 380 380 * by PHP, where each widget update cause the entire element to be emptied 381 381 * and replaced with the rendered output of WP_Widget::form() which is -
src/wp-content/themes/twentyseventeen/assets/js/html5.js
21 21 /** Name of the expando, to work with multiple documents or to re-shiv one document */ 22 22 var expando = '_html5shiv'; 23 23 24 /** The id for the thedocuments expando */24 /** The id for the documents expando */ 25 25 var expanID = 0; 26 26 27 27 /** Cached data for each document */ -
src/wp-content/themes/twentysixteen/js/html5.js
21 21 /** Name of the expando, to work with multiple documents or to re-shiv one document */ 22 22 var expando = '_html5shiv'; 23 23 24 /** The id for the thedocuments expando */24 /** The id for the documents expando */ 25 25 var expanID = 0; 26 26 27 27 /** Cached data for each document */ -
src/wp-includes/class-simplepie.php
802 802 } 803 803 804 804 /** 805 * Set the thedefault timeout for fetching remote feeds805 * Set the default timeout for fetching remote feeds 806 806 * 807 807 * This allows you to change the maximum time the feed's server to respond 808 808 * and send the feed back. -
src/wp-includes/class-wp-customize-manager.php
4107 4107 4108 4108 /* 4109 4109 * Static Front Page 4110 * See also https://core.trac.wordpress.org/ticket/19627 which introduces the thestatic-front-page theme_support.4110 * See also https://core.trac.wordpress.org/ticket/19627 which introduces the static-front-page theme_support. 4111 4111 * The following replicates behavior from options-reading.php. 4112 4112 */ 4113 4113 -
src/wp-includes/ID3/module.audio-video.matroska.php
72 72 define('EBML_ID_FILEDESCRIPTION', 0x067E); // [46][7E] -- A human-friendly name for the attached file. 73 73 define('EBML_ID_FILEUID', 0x06AE); // [46][AE] -- Unique ID representing the file, as random as possible. 74 74 define('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 thedata was encrypted with.75 define('EBML_ID_CONTENTENCKEYID', 0x07E2); // [47][E2] -- For public key algorithms this is the ID of the public key the data was encrypted with. 76 76 define('EBML_ID_CONTENTSIGNATURE', 0x07E3); // [47][E3] -- A cryptographic signature of the contents. 77 77 define('EBML_ID_CONTENTSIGKEYID', 0x07E4); // [47][E4] -- This is the ID of the private key the data was signed with. 78 78 define('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
2904 2904 /* 2905 2905 * The following re-formulates the logic from wp_trash_post() as done in 2906 2906 * wp_publish_post(). The reason for bypassing wp_trash_post() is that it 2907 * will mutate the thepost_content and the post_name when they should be2907 * will mutate the post_content and the post_name when they should be 2908 2908 * untouched. 2909 2909 */ 2910 2910 if ( ! EMPTY_TRASH_DAYS ) {