Changeset 55646
- Timestamp:
- 04/11/2023 10:04:58 PM (22 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r55398 r55646 1509 1509 * 1510 1510 * The compressed TinyMCE file cannot deal with custom themes, so this makes 1511 * sure that we usethe uncompressed TinyMCE file if a theme is defined.1512 * Even if we areon a production environment.1511 * sure that WordPress uses the uncompressed TinyMCE file if a theme is defined. 1512 * Even if the website is running on a production environment. 1513 1513 * 1514 1514 * @since 5.0.0 -
trunk/src/wp-includes/class-wp-http-curl.php
r54133 r55646 329 329 * Grabs the headers of the cURL request. 330 330 * 331 * Each header is sent individually to this callback, so we append to the `$header` property332 * for temporary storage 331 * Each header is sent individually to this callback, and is appended to the `$header` property 332 * for temporary storage. 333 333 * 334 334 * @since 3.2.0 … … 346 346 * Grabs the body of the cURL request. 347 347 * 348 * The contents of the document are passed in chunks, so we append to the `$body`348 * The contents of the document are passed in chunks, and are appended to the `$body` 349 349 * property for temporary storage. Returning a length shorter than the length of 350 350 * `$data` passed in will cause cURL to abort the request with `CURLE_WRITE_ERROR`. … … 352 352 * @since 3.6.0 353 353 * 354 * @param resource $handle 355 * @param string $data 354 * @param resource $handle cURL handle. 355 * @param string $data cURL request body. 356 356 * @return int Total bytes of data written. 357 357 */
Note: See TracChangeset
for help on using the changeset viewer.