Changeset 41128 for branches/4.5
- Timestamp:
- 07/24/2017 10:24:07 PM (8 years ago)
- Location:
- branches/4.5
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
src/wp-includes/class-oembed.php (modified) (2 diffs)
-
src/wp-includes/user.php (modified) (1 diff)
-
src/wp-login.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.5
- Property svn:mergeinfo changed
/trunk merged: 37697,37720
- Property svn:mergeinfo changed
-
branches/4.5/src/wp-includes/class-oembed.php
r37709 r41128 222 222 */ 223 223 public function get_provider( $url, $args = '' ) { 224 $args = wp_parse_args( $args ); 224 225 225 226 $provider = false; … … 316 317 */ 317 318 public function get_html( $url, $args = '' ) { 319 $args = wp_parse_args( $args ); 320 318 321 /** 319 322 * Filters the oEmbed result before any HTTP requests are made. -
branches/4.5/src/wp-includes/user.php
r37008 r41128 28 28 function wp_signon( $credentials = array(), $secure_cookie = '' ) { 29 29 if ( empty($credentials) ) { 30 $credentials = array(); // Back-compat for plugins passing an empty string. 31 30 32 if ( ! empty($_POST['log']) ) 31 33 $credentials['user_login'] = $_POST['log']; -
branches/4.5/src/wp-login.php
r36867 r41128 782 782 $reauth = empty($_REQUEST['reauth']) ? false : true; 783 783 784 $user = wp_signon( '', $secure_cookie );784 $user = wp_signon( array(), $secure_cookie ); 785 785 786 786 if ( empty( $_COOKIE[ LOGGED_IN_COOKIE ] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.