Changeset 9105
- Timestamp:
- 08/15/2019 05:49:43 PM (6 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/official-wordpress-events/meetup
- Files:
-
- 2 edited
-
class-meetup-client.php (modified) (1 diff)
-
class-meetup-oauth2-client.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/official-wordpress-events/meetup/class-meetup-client.php
r9100 r9105 274 274 * from the request payload. 275 275 * 276 * @param array|WP_Error $response 276 * @param array|WP_Error $response The response or error generated from the request. 277 * @param string $request_url Optional. 278 * @param array $request_args Optional. 277 279 * 278 280 * @return void 279 281 */ 280 public function handle_error_response( $response ) {281 if ( parent::handle_error_response( $response ) ) {282 public function handle_error_response( $response, $request_url = '', $request_args = array() ) { 283 if ( parent::handle_error_response( $response, $request_url, $request_args ) ) { 282 284 return; 283 285 } -
sites/trunk/wordpress.org/public_html/wp-content/plugins/official-wordpress-events/meetup/class-meetup-oauth2-client.php
r9100 r9105 364 364 * from the request payload. 365 365 * 366 * @param array|WP_Error $response 366 * @param array|WP_Error $response The response or error generated from the request. 367 * @param string $request_url Optional. 368 * @param array $request_args Optional. 367 369 * 368 370 * @return void 369 371 */ 370 public function handle_error_response( $response ) {371 if ( parent::handle_error_response( $response ) ) {372 public function handle_error_response( $response, $request_url = '', $request_args = array() ) { 373 if ( parent::handle_error_response( $response, $request_url, $request_args ) ) { 372 374 return; 373 375 }
Note: See TracChangeset
for help on using the changeset viewer.