Changeset 45232
- Timestamp:
- 04/17/2019 01:26:00 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r45204 r45232 2219 2219 2220 2220 $title = sprintf( 2221 /* translators: %s: user's e -mail address */2221 /* translators: %s: user's email address */ 2222 2222 __( 'Personal Data Export for %s' ), 2223 2223 $email_address -
trunk/src/wp-includes/class-json.php
r44894 r45232 16 16 * 17 17 * This package provides a simple encoder and decoder for JSON notation. It 18 * is intended for use with client-side Java script applications that make18 * is intended for use with client-side JavaScript applications that make 19 19 * use of HTTPRequest to perform server communication functions - data can 20 * be encoded into JSON notation for use in a client-side java script, or21 * decoded from incoming Java script requests. JSON format is native to22 * Java script, and can be directly eval()'ed with no further parsing20 * be encoded into JSON notation for use in a client-side javaScript, or 21 * decoded from incoming JavaScript requests. JSON format is native to 22 * JavaScript, and can be directly eval()'ed with no further parsing 23 23 * overhead 24 24 * -
trunk/src/wp-includes/class-wp-customize-manager.php
r45190 r45232 3648 3648 * @type string|array $theme_supports Theme features required to support the panel. Default is none. 3649 3649 * @type string $default Default value for the setting. Default is empty string. 3650 * @type string $transport Options for rendering the live preview of changes in ThemeCustomizer.3650 * @type string $transport Options for rendering the live preview of changes in Customizer. 3651 3651 * Using 'refresh' makes the change visible by reloading the whole preview. 3652 3652 * Using 'postMessage' allows a custom JavaScript to handle live changes. -
trunk/src/wp-includes/class-wp-customize-setting.php
r42761 r45232 67 67 68 68 /** 69 * Options for rendering the live preview of changes in ThemeCustomizer.70 * 71 * Set this value to 'postMessage' to enable a custom Java script handler to render changes to this setting69 * Options for rendering the live preview of changes in Customizer. 70 * 71 * Set this value to 'postMessage' to enable a custom JavaScript handler to render changes to this setting 72 72 * as opposed to reloading the whole page. 73 73 * -
trunk/src/wp-includes/class-wp-site.php
r42746 r45232 316 316 317 317 switch_to_blog( $this->blog_id ); 318 // Create a raw copy of the object for backward scompatibility with the filter below.318 // Create a raw copy of the object for backward compatibility with the filter below. 319 319 $details = new stdClass(); 320 320 foreach ( get_object_vars( $this ) as $key => $value ) { -
trunk/src/wp-includes/media.php
r45147 r45232 734 734 /* 735 735 * When the size requested is smaller than the thumbnail dimensions, we 736 * fall back to the thumbnail size to maintain backward scompatibility with736 * fall back to the thumbnail size to maintain backward compatibility with 737 737 * pre 4.6 versions of WordPress. 738 738 */ -
trunk/src/wp-includes/script-loader.php
r45178 r45232 1084 1084 $scripts->add( 'jquery-touch-punch', '/wp-includes/js/jquery/jquery.ui.touch-punch.js', array( 'jquery-ui-widget', 'jquery-ui-mouse' ), '0.2.2', 1 ); 1085 1085 1086 // Not used any more, registered for backward scompatibility.1086 // Not used any more, registered for backward compatibility. 1087 1087 $scripts->add( 'suggest', "/wp-includes/js/jquery/suggest$suffix.js", array( 'jquery' ), '1.1-20110113', 1 ); 1088 1088 -
trunk/src/wp-includes/theme.php
r45115 r45232 3286 3286 * associated auto-draft posts should likewise transition into having a draft 3287 3287 * status. These drafts will be treated differently than regular drafts in 3288 * that they will be tied to the given changeset. The publish meta box is3288 * that they will be tied to the given changeset. The publish meta box is 3289 3289 * replaced with a notice about how the post is part of a set of customized changes 3290 3290 * which will be published when the changeset is published. -
trunk/src/wp-includes/wp-db.php
r45140 r45232 1336 1336 * ensures the quotes are consistent. 1337 1337 * 1338 * For backward scompatibility, this is only applied to %s, and not to placeholders like %1$s, which are frequently1338 * For backward compatibility, this is only applied to %s, and not to placeholders like %1$s, which are frequently 1339 1339 * used in the middle of longer strings, or as table name placeholders. 1340 1340 */
Note: See TracChangeset
for help on using the changeset viewer.