Changeset 47660
- Timestamp:
- 04/29/2020 04:55:29 PM (4 years ago)
- Location:
- branches/3.9
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.9/src/wp-includes/cache.php
r27162 r47660 588 588 echo '<ul>'; 589 589 foreach ($this->cache as $group => $cache) { 590 echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / 1024, 2 ) . 'k )</li>';590 echo '<li><strong>Group:</strong> ' . esc_html( $group ) . ' - ( ' . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>'; 591 591 } 592 592 echo '</ul>'; -
branches/3.9/src/wp-includes/formatting.php
r37822 r47660 1036 1036 $filename_raw = $filename; 1037 1037 $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0)); 1038 1039 // Check for support for utf8 in the installed PCRE library once and store the result in a static. 1040 static $utf8_pcre = null; 1041 if ( ! isset( $utf8_pcre ) ) { 1042 // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged 1043 $utf8_pcre = @preg_match( '/^./u', 'a' ); 1044 } 1045 1046 if ( ! seems_utf8( $filename ) ) { 1047 $_ext = pathinfo( $filename, PATHINFO_EXTENSION ); 1048 $_name = pathinfo( $filename, PATHINFO_FILENAME ); 1049 $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext; 1050 } 1051 1052 if ( $utf8_pcre ) { 1053 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename ); 1054 } 1055 1038 1056 /** 1039 1057 * Filter the list of characters to remove from a filename. … … 1045 1063 */ 1046 1064 $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw ); 1047 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );1048 1065 $filename = str_replace($special_chars, '', $filename); 1049 1066 $filename = preg_replace('/[\s-]+/', '-', $filename); -
branches/3.9/src/wp-includes/query.php
r46503 r47660 1502 1502 } elseif ( $qv['p'] ) { 1503 1503 $this->is_single = true; 1504 } elseif ( ('' !== $qv['hour']) && ('' !== $qv['minute']) &&('' !== $qv['second']) && ('' != $qv['year']) && ('' != $qv['monthnum']) && ('' != $qv['day']) ) {1505 // If year, month, day, hour, minute, and second are set, a single1506 // post is being queried.1507 $this->is_single = true;1508 1504 } elseif ( '' != $qv['pagename'] || !empty($qv['page_id']) ) { 1509 1505 $this->is_page = true; -
branches/3.9/src/wp-includes/user.php
r30432 r47660 1717 1717 1718 1718 if ( $update ) { 1719 if ( $user_email !== $old_user_data->user_email ) {1719 if ( $user_email !== $old_user_data->user_email || $user_pass !== $old_user_data->user_pass ) { 1720 1720 $data['user_activation_key'] = ''; 1721 1721 } -
branches/3.9/tests/phpunit/tests/formatting/SanitizeFileName.php
r37822 r47660 43 43 $this->assertEquals( 'no-extension', sanitize_file_name( '_.no-extension' ) ); 44 44 } 45 46 /** 47 * @dataProvider data_wp_filenames 48 */ 49 function test_replaces_invalid_utf8_characters( $input, $expected ) { 50 $this->assertEquals( $expected, sanitize_file_name( $input ) ); 51 } 52 53 function data_wp_filenames() { 54 return array( 55 array( urldecode( '%B1myfile.png' ), 'myfile.png' ), 56 array( urldecode( '%B1myfile' ), 'myfile' ), 57 array( 'demo bar.png', 'demo-bar.png' ), 58 array( 'demo' . json_decode( '"\u00a0"' ) . 'bar.png', 'demo-bar.png' ), 59 ); 60 } 45 61 } -
branches/3.9/tests/phpunit/tests/user.php
r47329 r47660 589 589 } 590 590 591 function test_changing_email_invalidates_password_reset_key() {591 public function test_changing_email_invalidates_password_reset_key() { 592 592 global $wpdb; 593 593 … … 620 620 $this->assertEmpty( $user->user_activation_key ); 621 621 } 622 623 public function test_changing_password_invalidates_password_reset_key() { 624 global $wpdb; 625 626 $user = $this->factory->user->create_and_get(); 627 $wpdb->update( $wpdb->users, array( 'user_activation_key' => 'key' ), array( 'ID' => $user->ID ) ); 628 clean_user_cache( $user ); 629 630 $user = get_userdata( $user->ID ); 631 $this->assertEquals( 'key', $user->user_activation_key ); 632 633 $userdata = array( 634 'ID' => $user->ID, 635 'user_pass' => 'password', 636 ); 637 wp_update_user( $userdata ); 638 639 $user = get_userdata( $user->ID ); 640 $this->assertEmpty( $user->user_activation_key ); 641 } 642 622 643 }
Note: See TracChangeset
for help on using the changeset viewer.