Changeset 29788
- Timestamp:
- 09/29/2014 01:27:55 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-upgrader.php
r29694 r29788 2597 2597 If you think these failures might be due to a bug in WordPress, could you report it? 2598 2598 * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta 2599 * Or, if you're comfortable writing a bug report: http ://core.trac.wordpress.org/2599 * Or, if you're comfortable writing a bug report: https://core.trac.wordpress.org/ 2600 2600 2601 2601 Thanks! -- The WordPress Team" ) ); -
trunk/src/wp-content/themes/twentyeleven/style.css
r29771 r29788 2302 2302 * but in the future W3C standard way. -ms- prefix is required for IE10+ to 2303 2303 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor 2304 * the meta tag. See http ://core.trac.wordpress.org/ticket/25888.2304 * the meta tag. See https://core.trac.wordpress.org/ticket/25888. 2305 2305 */ 2306 2306 @-ms-viewport { -
trunk/src/wp-content/themes/twentyfourteen/style.css
r29771 r29788 460 460 461 461 /* Support a widely-adopted but non-standard selector for text selection styles 462 * to achieve a better experience. See http ://core.trac.wordpress.org/ticket/25898.462 * to achieve a better experience. See https://core.trac.wordpress.org/ticket/25898. 463 463 */ 464 464 ::selection { … … 3078 3078 * but in the future W3C standard way. -ms- prefix is required for IE10+ to 3079 3079 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor 3080 * the meta tag. See http ://core.trac.wordpress.org/ticket/25888.3080 * the meta tag. See https://core.trac.wordpress.org/ticket/25888. 3081 3081 */ 3082 3082 @-ms-viewport { -
trunk/src/wp-content/themes/twentyfourteen/taxonomy-post_format.php
r26679 r29788 7 7 * new template file for each specific one. 8 8 * 9 * @todo http ://core.trac.wordpress.org/ticket/23257: Add plural versions of Post Format strings9 * @todo https://core.trac.wordpress.org/ticket/23257: Add plural versions of Post Format strings 10 10 * and remove plurals below. 11 11 * -
trunk/src/wp-content/themes/twentythirteen/style.css
r29771 r29788 2627 2627 * but in the future W3C standard way. -ms- prefix is required for IE10+ to 2628 2628 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor 2629 * the meta tag. See http ://core.trac.wordpress.org/ticket/25888.2629 * the meta tag. See https://core.trac.wordpress.org/ticket/25888. 2630 2630 */ 2631 2631 @-ms-viewport { -
trunk/src/wp-content/themes/twentytwelve/style.css
r29771 r29788 1453 1453 * but in the future W3C standard way. -ms- prefix is required for IE10+ to 1454 1454 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor 1455 * the meta tag. See http ://core.trac.wordpress.org/ticket/25888.1455 * the meta tag. See https://core.trac.wordpress.org/ticket/25888. 1456 1456 */ 1457 1457 @-ms-viewport { -
trunk/src/wp-includes/class-http.php
r29661 r29788 616 616 * 617 617 * @since 2.8.0 618 * @link http ://core.trac.wordpress.org/ticket/8927 Allow preventing external requests.619 * @link http ://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_ACCESSIBLE_HOSTS618 * @link https://core.trac.wordpress.org/ticket/8927 Allow preventing external requests. 619 * @link https://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_ACCESSIBLE_HOSTS 620 620 * 621 621 * @param string $uri URI of url. … … 1574 1574 * </code> 1575 1575 * 1576 * @link http ://core.trac.wordpress.org/ticket/4011 Proxy support ticket in WordPress.1577 * @link http ://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_PROXY_BYPASS_HOSTS1576 * @link https://core.trac.wordpress.org/ticket/4011 Proxy support ticket in WordPress. 1577 * @link https://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_PROXY_BYPASS_HOSTS 1578 1578 * @since 2.8.0 1579 1579 */ … … 2042 2042 * data may be returned in, some "magic offsets" are needed to ensure proper decompression 2043 2043 * takes place. For a simple progmatic way to determine the magic offset in use, see: 2044 * http ://core.trac.wordpress.org/ticket/182732044 * https://core.trac.wordpress.org/ticket/18273 2045 2045 * 2046 2046 * @since 2.8.1 2047 * @link http ://core.trac.wordpress.org/ticket/182732047 * @link https://core.trac.wordpress.org/ticket/18273 2048 2048 * @link http://au2.php.net/manual/en/function.gzinflate.php#70875 2049 2049 * @link http://au2.php.net/manual/en/function.gzinflate.php#77336 -
trunk/src/wp-includes/class-wp-customize-manager.php
r29488 r29788 218 218 add_filter( 'pre_option_current_theme', array( $this, 'current_theme' ) ); 219 219 220 // @link: http ://core.trac.wordpress.org/ticket/20027220 // @link: https://core.trac.wordpress.org/ticket/20027 221 221 add_filter( 'pre_option_stylesheet', array( $this, 'get_stylesheet' ) ); 222 222 add_filter( 'pre_option_template', array( $this, 'get_template' ) ); … … 255 255 remove_filter( 'pre_option_current_theme', array( $this, 'current_theme' ) ); 256 256 257 // @link: http ://core.trac.wordpress.org/ticket/20027257 // @link: https://core.trac.wordpress.org/ticket/20027 258 258 remove_filter( 'pre_option_stylesheet', array( $this, 'get_stylesheet' ) ); 259 259 remove_filter( 'pre_option_template', array( $this, 'get_template' ) ); -
trunk/src/wp-includes/class-wp-embed.php
r29707 r29788 157 157 158 158 // kses converts & into & and we need to undo this 159 // See http ://core.trac.wordpress.org/ticket/11311159 // See https://core.trac.wordpress.org/ticket/11311 160 160 $url = str_replace( '&', '&', $url ); 161 161 -
trunk/src/wp-includes/comment.php
r29763 r29788 1772 1772 * We use REMOTE_ADDR here directly. If you are behind a proxy, you should ensure 1773 1773 * that it is properly set, such as in wp-config.php, for your environment. 1774 * See {@link http ://core.trac.wordpress.org/ticket/9235}1774 * See {@link https://core.trac.wordpress.org/ticket/9235} 1775 1775 * 1776 1776 * @since 1.5.0 -
trunk/src/wp-includes/functions.php
r29756 r29788 101 101 /* 102 102 * Store original value for language with untypical grammars. 103 * See http ://core.trac.wordpress.org/ticket/9396103 * See https://core.trac.wordpress.org/ticket/9396 104 104 */ 105 105 $req_format = $dateformatstring; … … 378 378 379 379 // Double serialization is required for backward compatibility. 380 // See http ://core.trac.wordpress.org/ticket/12930380 // See https://core.trac.wordpress.org/ticket/12930 381 381 if ( is_serialized( $data, false ) ) 382 382 return serialize( $data ); … … 3927 3927 * @access private 3928 3928 * 3929 * @see http ://core.trac.wordpress.org/ticket/84973929 * @see https://core.trac.wordpress.org/ticket/8497 3930 3930 * 3931 3931 * @param string $str Header comment to clean up. … … 4276 4276 * @since 3.4.0 4277 4277 * 4278 * @see http ://core.trac.wordpress.org/ticket/195894278 * @see https://core.trac.wordpress.org/ticket/19589 4279 4279 * 4280 4280 * @param string $ignore_class Optional. A class to ignore all function calls within - useful … … 4537 4537 * @access private 4538 4538 * 4539 * @see http ://core.trac.wordpress.org/ticket/236884539 * @see https://core.trac.wordpress.org/ticket/23688 4540 4540 * 4541 4541 * @param string $charset A charset name. -
trunk/src/wp-includes/functions.wp-scripts.php
r29677 r29788 100 100 * 101 101 * @see WP_Dependencies::localize() 102 * @link http ://core.trac.wordpress.org/ticket/11520102 * @link https://core.trac.wordpress.org/ticket/11520 103 103 * @global WP_Scripts $wp_scripts The WP_Scripts object for printing scripts. 104 104 * -
trunk/src/wp-includes/general-template.php
r29780 r29788 2298 2298 * 2299 2299 * Using this function is the proper way to output all needed components for both TinyMCE and Quicktags. 2300 * _WP_Editors should not be used directly. See http ://core.trac.wordpress.org/ticket/17144.2300 * _WP_Editors should not be used directly. See https://core.trac.wordpress.org/ticket/17144. 2301 2301 * 2302 2302 * NOTE: Once initialized the TinyMCE editor cannot be safely moved in the DOM. For that reason … … 2304 2304 * On the post edit screen several actions can be used to include additional editors 2305 2305 * containing TinyMCE: 'edit_page_form', 'edit_form_advanced' and 'dbx_post_sidebar'. 2306 * See http ://core.trac.wordpress.org/ticket/19173 for more information.2306 * See https://core.trac.wordpress.org/ticket/19173 for more information. 2307 2307 * 2308 2308 * @see wp-includes/class-wp-editor.php -
trunk/src/wp-includes/js/media-editor.js
r29603 r29788 1094 1094 // above the modal. 1095 1095 // 1096 // See: http ://core.trac.wordpress.org/ticket/224451096 // See: https://core.trac.wordpress.org/ticket/22445 1097 1097 elem.blur(); 1098 1098 -
trunk/src/wp-includes/js/plupload/wp-plupload.js
r27933 r29788 153 153 // dropzone are repositioned. 154 154 // 155 // See http ://core.trac.wordpress.org/ticket/21705155 // See https://core.trac.wordpress.org/ticket/21705 156 156 timer = setTimeout( function() { 157 157 active = false; -
trunk/src/wp-includes/rewrite.php
r28533 r29788 667 667 * page permastruct is actually a page before accepting it. 668 668 * 669 * @link http ://core.trac.wordpress.org/ticket/16687669 * @link https://core.trac.wordpress.org/ticket/16687 670 670 * @see WP_Rewrite::init() 671 671 * @since 2.5.0 -
trunk/src/wp-includes/wp-db.php
r29784 r29788 568 568 * to the database. 569 569 * 570 * @link http ://core.trac.wordpress.org/ticket/3354570 * @link https://core.trac.wordpress.org/ticket/3354 571 571 * @since 2.0.8 572 572 * -
trunk/tests/phpunit/tests/formatting/Autop.php
r29328 r29788 5 5 */ 6 6 class Tests_Formatting_Autop extends WP_UnitTestCase { 7 //From ticket http ://core.trac.wordpress.org/ticket/110087 //From ticket https://core.trac.wordpress.org/ticket/11008 8 8 function test_first_post() { 9 9 $expected = '<p>Welcome to WordPress! This post contains important information. After you read it, you can make it private to hide it from visitors but still have the information handy for future reference.</p> -
trunk/tests/phpunit/tests/import/parser.php
r27349 r29788 146 146 * sections that contain escaped closing tags ("]]>" -> "]]]]><![CDATA[>"). 147 147 * 148 * @link http ://core.trac.wordpress.org/ticket/15203148 * @link https://core.trac.wordpress.org/ticket/15203 149 149 */ 150 150 function test_escaped_cdata_closing_sequence() { -
trunk/tests/phpunit/tests/xmlrpc/wp/restoreRevision.php
r25002 r29788 12 12 13 13 $this->post_id = $this->factory->post->create( array( 'post_content' => 'edit1' ) ); // Not saved as a revision 14 // First saved revision on update, see http ://core.trac.wordpress.org/changeset/2465014 // First saved revision on update, see https://core.trac.wordpress.org/changeset/24650 15 15 wp_insert_post( array( 'ID' => $this->post_id, 'post_content' => 'edit2' ) ); 16 16 17 17 $revisions = wp_get_post_revisions( $this->post_id ); 18 //$revision = array_shift( $revisions ); // First revision is empty - http ://core.trac.wordpress.org/changeset/2384219 // First revision is NOT empty, see http ://core.trac.wordpress.org/changeset/2465018 //$revision = array_shift( $revisions ); // First revision is empty - https://core.trac.wordpress.org/changeset/23842 19 // First revision is NOT empty, see https://core.trac.wordpress.org/changeset/24650 20 20 $revision = array_shift( $revisions ); 21 21 $this->revision_id = $revision->ID;
Note: See TracChangeset
for help on using the changeset viewer.