Changeset 47658
- Timestamp:
- 04/29/2020 04:52:21 PM (4 years ago)
- Location:
- branches/4.1
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1/src/wp-includes/cache.php
r30681 r47658 640 640 echo '<ul>'; 641 641 foreach ($this->cache as $group => $cache) { 642 echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / 1024, 2 ) . 'k )</li>';642 echo '<li><strong>Group:</strong> ' . esc_html( $group ) . ' - ( ' . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>'; 643 643 } 644 644 echo '</ul>'; -
branches/4.1/src/wp-includes/formatting.php
r37818 r47658 1167 1167 $filename_raw = $filename; 1168 1168 $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0)); 1169 1170 // Check for support for utf8 in the installed PCRE library once and store the result in a static. 1171 static $utf8_pcre = null; 1172 if ( ! isset( $utf8_pcre ) ) { 1173 // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged 1174 $utf8_pcre = @preg_match( '/^./u', 'a' ); 1175 } 1176 1177 if ( ! seems_utf8( $filename ) ) { 1178 $_ext = pathinfo( $filename, PATHINFO_EXTENSION ); 1179 $_name = pathinfo( $filename, PATHINFO_FILENAME ); 1180 $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext; 1181 } 1182 1183 if ( $utf8_pcre ) { 1184 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename ); 1185 } 1186 1169 1187 /** 1170 1188 * Filter the list of characters to remove from a filename. … … 1176 1194 */ 1177 1195 $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw ); 1178 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );1179 1196 $filename = str_replace( $special_chars, '', $filename ); 1180 1197 $filename = str_replace( array( '%20', '+' ), '-', $filename ); -
branches/4.1/src/wp-includes/query.php
r46501 r47658 1591 1591 } elseif ( $qv['p'] ) { 1592 1592 $this->is_single = true; 1593 } elseif ( ('' !== $qv['hour']) && ('' !== $qv['minute']) &&('' !== $qv['second']) && ('' != $qv['year']) && ('' != $qv['monthnum']) && ('' != $qv['day']) ) {1594 // If year, month, day, hour, minute, and second are set, a single1595 // post is being queried.1596 $this->is_single = true;1597 1593 } elseif ( '' != $qv['pagename'] || !empty($qv['page_id']) ) { 1598 1594 $this->is_page = true; -
branches/4.1/src/wp-includes/user.php
r30940 r47658 1886 1886 1887 1887 if ( $update ) { 1888 if ( $user_email !== $old_user_data->user_email ) {1888 if ( $user_email !== $old_user_data->user_email || $user_pass !== $old_user_data->user_pass ) { 1889 1889 $data['user_activation_key'] = ''; 1890 1890 } -
branches/4.1/tests/phpunit/tests/formatting/SanitizeFileName.php
r37818 r47658 61 61 $this->assertEquals( 'no-extension', sanitize_file_name( '_.no-extension' ) ); 62 62 } 63 64 /** 65 * @dataProvider data_wp_filenames 66 */ 67 function test_replaces_invalid_utf8_characters( $input, $expected ) { 68 $this->assertEquals( $expected, sanitize_file_name( $input ) ); 69 } 70 71 function data_wp_filenames() { 72 return array( 73 array( urldecode( '%B1myfile.png' ), 'myfile.png' ), 74 array( urldecode( '%B1myfile' ), 'myfile' ), 75 array( 'demo bar.png', 'demo-bar.png' ), 76 array( 'demo' . json_decode( '"\u00a0"' ) . 'bar.png', 'demo-bar.png' ), 77 ); 78 } 63 79 } -
branches/4.1/tests/phpunit/tests/user.php
r30513 r47658 634 634 } 635 635 636 function test_changing_email_invalidates_password_reset_key() {636 public function test_changing_email_invalidates_password_reset_key() { 637 637 global $wpdb; 638 638 … … 665 665 $this->assertEmpty( $user->user_activation_key ); 666 666 } 667 668 public function test_changing_password_invalidates_password_reset_key() { 669 global $wpdb; 670 671 $user = $this->factory->user->create_and_get(); 672 $wpdb->update( $wpdb->users, array( 'user_activation_key' => 'key' ), array( 'ID' => $user->ID ) ); 673 clean_user_cache( $user ); 674 675 $user = get_userdata( $user->ID ); 676 $this->assertEquals( 'key', $user->user_activation_key ); 677 678 $userdata = array( 679 'ID' => $user->ID, 680 'user_pass' => 'password', 681 ); 682 wp_update_user( $userdata ); 683 684 $user = get_userdata( $user->ID ); 685 $this->assertEmpty( $user->user_activation_key ); 686 } 687 667 688 }
Note: See TracChangeset
for help on using the changeset viewer.