Changeset 49108 for trunk/src/wp-includes/class-wp-http-curl.php
- Timestamp:
- 10/08/2020 09:13:57 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-curl.php
r48586 r49108 174 174 175 175 if ( isset( $parsed_args['limit_response_size'] ) ) { 176 $this->max_body_length = intval( $parsed_args['limit_response_size'] );176 $this->max_body_length = (int) $parsed_args['limit_response_size']; 177 177 } else { 178 178 $this->max_body_length = false;
Note: See TracChangeset
for help on using the changeset viewer.