Changeset 47657
- Timestamp:
- 04/29/2020 04:51:02 PM (4 years ago)
- Location:
- branches/4.2
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.2
- Property svn:mergeinfo changed
/trunk merged: 47634-47635,47637-47638
- Property svn:mergeinfo changed
-
branches/4.2/src/wp-includes/cache.php
r32116 r47657 648 648 echo '<ul>'; 649 649 foreach ($this->cache as $group => $cache) { 650 echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / 1024, 2 ) . 'k )</li>';650 echo '<li><strong>Group:</strong> ' . esc_html( $group ) . ' - ( ' . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>'; 651 651 } 652 652 echo '</ul>'; -
branches/4.2/src/wp-includes/formatting.php
r37816 r47657 1220 1220 $filename_raw = $filename; 1221 1221 $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0)); 1222 1223 // Check for support for utf8 in the installed PCRE library once and store the result in a static. 1224 static $utf8_pcre = null; 1225 if ( ! isset( $utf8_pcre ) ) { 1226 // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged 1227 $utf8_pcre = @preg_match( '/^./u', 'a' ); 1228 } 1229 1230 if ( ! seems_utf8( $filename ) ) { 1231 $_ext = pathinfo( $filename, PATHINFO_EXTENSION ); 1232 $_name = pathinfo( $filename, PATHINFO_FILENAME ); 1233 $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext; 1234 } 1235 1236 if ( $utf8_pcre ) { 1237 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename ); 1238 } 1239 1222 1240 /** 1223 1241 * Filter the list of characters to remove from a filename. … … 1229 1247 */ 1230 1248 $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw ); 1231 $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );1232 1249 $filename = str_replace( $special_chars, '', $filename ); 1233 1250 $filename = str_replace( array( '%20', '+' ), '-', $filename ); -
branches/4.2/src/wp-includes/query.php
r46500 r47657 1601 1601 } elseif ( $qv['p'] ) { 1602 1602 $this->is_single = true; 1603 } elseif ( ('' !== $qv['hour']) && ('' !== $qv['minute']) &&('' !== $qv['second']) && ('' != $qv['year']) && ('' != $qv['monthnum']) && ('' != $qv['day']) ) {1604 // If year, month, day, hour, minute, and second are set, a single1605 // post is being queried.1606 $this->is_single = true;1607 1603 } elseif ( '' != $qv['pagename'] || !empty($qv['page_id']) ) { 1608 1604 $this->is_page = true; -
branches/4.2/src/wp-includes/user.php
r32207 r47657 2005 2005 2006 2006 if ( $update ) { 2007 if ( $user_email !== $old_user_data->user_email ) {2007 if ( $user_email !== $old_user_data->user_email || $user_pass !== $old_user_data->user_pass ) { 2008 2008 $data['user_activation_key'] = ''; 2009 2009 } -
branches/4.2/tests/phpunit/tests/formatting/SanitizeFileName.php
r37816 r47657 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.2/tests/phpunit/tests/user.php
r31963 r47657 669 669 } 670 670 671 function test_changing_email_invalidates_password_reset_key() {671 public function test_changing_email_invalidates_password_reset_key() { 672 672 global $wpdb; 673 673 … … 700 700 $this->assertEmpty( $user->user_activation_key ); 701 701 } 702 703 public function test_changing_password_invalidates_password_reset_key() { 704 global $wpdb; 705 706 $user = $this->factory->user->create_and_get(); 707 $wpdb->update( $wpdb->users, array( 'user_activation_key' => 'key' ), array( 'ID' => $user->ID ) ); 708 clean_user_cache( $user ); 709 710 $user = get_userdata( $user->ID ); 711 $this->assertEquals( 'key', $user->user_activation_key ); 712 713 $userdata = array( 714 'ID' => $user->ID, 715 'user_pass' => 'password', 716 ); 717 wp_update_user( $userdata ); 718 719 $user = get_userdata( $user->ID ); 720 $this->assertEmpty( $user->user_activation_key ); 721 } 722 702 723 }
Note: See TracChangeset
for help on using the changeset viewer.