Changeset 41129 for branches/4.4
- Timestamp:
- 07/24/2017 10:26:59 PM (9 years ago)
- Location:
- branches/4.4
- 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.4
- Property svn:mergeinfo changed
/trunk merged: 37697,37720
- Property svn:mergeinfo changed
-
branches/4.4/src/wp-includes/class-oembed.php
r37798 r41129 198 198 */ 199 199 public function get_provider( $url, $args = '' ) { 200 $args = wp_parse_args( $args ); 200 201 201 202 $provider = false; … … 285 286 */ 286 287 public function get_html( $url, $args = '' ) { 288 $args = wp_parse_args( $args ); 289 287 290 /** 288 291 * Filters the oEmbed result before any HTTP requests are made. -
branches/4.4/src/wp-includes/user.php
r35772 r41129 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.4/src/wp-login.php
r36043 r41129 773 773 $reauth = empty($_REQUEST['reauth']) ? false : true; 774 774 775 $user = wp_signon( '', $secure_cookie );775 $user = wp_signon( array(), $secure_cookie ); 776 776 777 777 if ( empty( $_COOKIE[ LOGGED_IN_COOKIE ] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.