Changeset 29789
- Timestamp:
- 09/29/2014 01:36:38 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-upgrader.php
r29788 r29789 5 5 * This set of classes are designed to be used to upgrade/install a local set of files on the filesystem via the Filesystem Abstraction classes. 6 6 * 7 * @link http ://trac.wordpress.org/ticket/7875 consolidate plugin/theme/core upgrade/install functions7 * @link https://core.trac.wordpress.org/ticket/7875 consolidate plugin/theme/core upgrade/install functions 8 8 * 9 9 * @package WordPress -
trunk/src/wp-admin/includes/plugin.php
r29326 r29789 61 61 * reading. 62 62 * 63 * @link http ://trac.wordpress.org/ticket/5651 Previous Optimizations.64 * @link http ://trac.wordpress.org/ticket/7372 Further and better Optimizations.63 * @link https://core.trac.wordpress.org/ticket/5651 Previous Optimizations. 64 * @link https://core.trac.wordpress.org/ticket/7372 Further and better Optimizations. 65 65 * @since 1.5.0 66 66 * -
trunk/src/wp-includes/canonical.php
r29663 r29789 70 70 71 71 // Some PHP setups turn requests for / into /index.php in REQUEST_URI 72 // See: http ://trac.wordpress.org/ticket/501773 // See: http ://trac.wordpress.org/ticket/717372 // See: https://core.trac.wordpress.org/ticket/5017 73 // See: https://core.trac.wordpress.org/ticket/7173 74 74 // Disabled, for now: 75 75 // $original['path'] = preg_replace('|/index\.php$|', '/', $original['path']); -
trunk/src/wp-includes/class-http.php
r29788 r29789 6 6 * decoding, if HTTP 1.1 and various other difficult HTTP protocol implementations. 7 7 * 8 * @link http ://trac.wordpress.org/ticket/4779 HTTP API Proposal8 * @link https://core.trac.wordpress.org/ticket/4779 HTTP API Proposal 9 9 * 10 10 * @package WordPress -
trunk/src/wp-includes/general-template.php
r29788 r29789 572 572 * @since 1.5.0 573 573 * 574 * @link http ://trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.574 * @link https://core.trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action. 575 575 */ 576 576 function wp_meta() { -
trunk/src/wp-includes/http.php
r29230 r29789 5 5 * Will eventually replace and standardize the WordPress HTTP requests made. 6 6 * 7 * @link http ://trac.wordpress.org/ticket/4779 HTTP API Proposal7 * @link https://core.trac.wordpress.org/ticket/4779 HTTP API Proposal 8 8 * 9 9 * @package WordPress -
trunk/src/wp-includes/pluggable.php
r29751 r29789 361 361 * there's no easy alternative. Defaulting to admin_email might appear to be another 362 362 * option but some hosts may refuse to relay mail from an unknown domain. See 363 * http ://trac.wordpress.org/ticket/5007.363 * https://core.trac.wordpress.org/ticket/5007. 364 364 */ 365 365 -
trunk/src/wp-includes/plugin.php
r29665 r29789 866 866 * shouldn't have any speed penalty. 867 867 * 868 * @link http ://trac.wordpress.org/ticket/3875868 * @link https://core.trac.wordpress.org/ticket/3875 869 869 * 870 870 * @since 2.2.3 -
trunk/tests/phpunit/includes/wp-profiler.php
r25254 r29789 149 149 150 150 function _query_count($queries) { 151 // this requires the savequeries patch at http ://trac.wordpress.org/ticket/5218151 // this requires the savequeries patch at https://core.trac.wordpress.org/ticket/5218 152 152 $out = array(); 153 153 foreach ($queries as $q) { -
trunk/tests/phpunit/tests/image/meta.php
r25002 r29789 88 88 function test_exif_error() { 89 89 90 // http ://trac.wordpress.org/ticket/657190 // https://core.trac.wordpress.org/ticket/6571 91 91 // this triggers a warning mesage when reading the exif block 92 92 $out = wp_read_image_metadata(DIR_TESTDATA.'/images/waffles.jpg'); -
trunk/tests/phpunit/tests/post.php
r29351 r29789 166 166 function test_vb_insert_future_edit_bug() { 167 167 // future post bug: posts get published at the wrong time if you edit the timestamp 168 // http ://trac.wordpress.org/ticket/4710168 // https://core.trac.wordpress.org/ticket/4710 169 169 170 170 $future_date_1 = strtotime('+1 day');
Note: See TracChangeset
for help on using the changeset viewer.