Changeset 13607
- Timestamp:
- 04/29/2024 04:31:34 AM (9 months ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/clients/class-helpscout.php
r13114 r13607 13 13 * The HTTP timeout for the HelpScout API. 14 14 */ 15 const TIMEOUT = 15;15 const TIMEOUT = 30; 16 16 17 17 public static function api( $url, $args = null, $method = 'GET', & $response_code = null ) { -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload-handler.php
r13575 r13607 805 805 ); 806 806 807 return ( 201 === $http_response_code ); 807 $success = ( 201 === $http_response_code ); 808 809 if ( ! $success ) { 810 trigger_error( "Helpscout update failed: $http_response_code: " . var_export( $result, true ), E_USER_WARNING ); 811 } 812 813 return $success; 808 814 } 809 815 }
Note: See TracChangeset
for help on using the changeset viewer.