Ticket #51426: 51426.patch
| File 51426.patch, 2.8 KB (added by , 5 years ago) |
|---|
-
wp-content/themes/twentythirteen/functions.php
515 515 * 516 516 * @since Twenty Thirteen 1.0 517 517 * 518 * @param bool ean$echo (optional) Whether to echo the date. Default true.518 * @param bool $echo (optional) Whether to echo the date. Default true. 519 519 * @return string The HTML-formatted post date. 520 520 */ 521 521 function twentythirteen_entry_date( $echo = true ) { -
wp-includes/class-requests.php
498 498 * Get the default options 499 499 * 500 500 * @see Requests::request() for values returned by this method 501 * @param bool ean$multirequest Is this a multirequest?501 * @param bool $multirequest Is this a multirequest? 502 502 * @return array Default option values 503 503 */ 504 504 protected static function get_default_options($multirequest = false) { -
wp-includes/class-wp-simplepie-file.php
29 29 * @param string|array $headers Optional. Array or string of headers to send with the request. 30 30 * Default null. 31 31 * @param string $useragent Optional. User-agent value sent. Default null. 32 * @param bool ean$force_fsockopen Optional. Whether to force opening internet or unix domain socket32 * @param bool $force_fsockopen Optional. Whether to force opening internet or unix domain socket 33 33 * connection or not. Default false. 34 34 */ 35 35 public function __construct( $url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false ) { -
wp-includes/Requests/Response.php
105 105 * 106 106 * @throws Requests_Exception If `$allow_redirects` is false, and code is 3xx (`response.no_redirects`) 107 107 * @throws Requests_Exception_HTTP On non-successful status code. Exception class corresponds to code (e.g. {@see Requests_Exception_HTTP_404}) 108 * @param bool ean$allow_redirects Set to false to throw on a 3xx as well108 * @param bool $allow_redirects Set to false to throw on a 3xx as well 109 109 */ 110 110 public function throw_for_status($allow_redirects = true) { 111 111 if ($this->is_redirect()) {