Ticket #40732: 40732.patch
File 40732.patch, 5.3 KB (added by , 8 years ago) |
---|
-
src/wp-admin/includes/dashboard.php
1462 1462 } 1463 1463 $notice .= "<p class='browser-update-nag{$browser_nag_class}'>{$msg}</p>"; 1464 1464 1465 $browsehappy = 'http ://browsehappy.com/';1465 $browsehappy = 'https://browsehappy.com/'; 1466 1466 $locale = get_user_locale(); 1467 1467 if ( 'en_US' !== $locale ) 1468 1468 $browsehappy = add_query_arg( 'locale', $locale, $browsehappy ); -
src/wp-includes/class-wp-hook.php
407 407 * @since 4.7.0 408 408 * @access public 409 409 * 410 * @link http ://php.net/manual/en/arrayaccess.offsetexists.php410 * @link https://secure.php.net/manual/en/arrayaccess.offsetexists.php 411 411 * 412 412 * @param mixed $offset An offset to check for. 413 413 * @return bool True if the offset exists, false otherwise. … … 422 422 * @since 4.7.0 423 423 * @access public 424 424 * 425 * @link http ://php.net/manual/en/arrayaccess.offsetget.php425 * @link https://secure.php.net/manual/en/arrayaccess.offsetget.php 426 426 * 427 427 * @param mixed $offset The offset to retrieve. 428 428 * @return mixed If set, the value at the specified offset, null otherwise. … … 437 437 * @since 4.7.0 438 438 * @access public 439 439 * 440 * @link http ://php.net/manual/en/arrayaccess.offsetset.php440 * @link https://secure.php.net/manual/en/arrayaccess.offsetset.php 441 441 * 442 442 * @param mixed $offset The offset to assign the value to. 443 443 * @param mixed $value The value to set. … … 456 456 * @since 4.7.0 457 457 * @access public 458 458 * 459 * @link http ://php.net/manual/en/arrayaccess.offsetunset.php459 * @link https://secure.php.net/manual/en/arrayaccess.offsetunset.php 460 460 * 461 461 * @param mixed $offset The offset to unset. 462 462 */ … … 470 470 * @since 4.7.0 471 471 * @access public 472 472 * 473 * @link http ://php.net/manual/en/iterator.current.php473 * @link https://secure.php.net/manual/en/iterator.current.php 474 474 * 475 475 * @return array Of callbacks at current priority. 476 476 */ … … 484 484 * @since 4.7.0 485 485 * @access public 486 486 * 487 * @link http ://php.net/manual/en/iterator.next.php487 * @link https://secure.php.net/manual/en/iterator.next.php 488 488 * 489 489 * @return array Of callbacks at next priority. 490 490 */ … … 498 498 * @since 4.7.0 499 499 * @access public 500 500 * 501 * @link http ://php.net/manual/en/iterator.key.php501 * @link https://secure.php.net/manual/en/iterator.key.php 502 502 * 503 503 * @return mixed Returns current priority on success, or NULL on failure 504 504 */ … … 512 512 * @since 4.7.0 513 513 * @access public 514 514 * 515 * @link http ://php.net/manual/en/iterator.valid.php515 * @link https://secure.php.net/manual/en/iterator.valid.php 516 516 * 517 517 * @return boolean 518 518 */ … … 526 526 * @since 4.7.0 527 527 * @access public 528 528 * 529 * @link http ://php.net/manual/en/iterator.rewind.php529 * @link https://secure.php.net/manual/en/iterator.rewind.php 530 530 */ 531 531 public function rewind() { 532 532 reset( $this->callbacks ); -
src/wp-includes/http.php
647 647 * @param int $component The specific component to retrieve. Use one of the PHP 648 648 * predefined constants to specify which one. 649 649 * Defaults to -1 (= return all parts as an array). 650 * @see http ://php.net/manual/en/function.parse-url.php650 * @see https://secure.php.net/manual/en/function.parse-url.php 651 651 * @return mixed False on parse failure; Array of URL components on success; 652 652 * When a specific component has been requested: null if the component 653 653 * doesn't exist in the given URL; a string or - in the case of … … 692 692 * @param int $component The specific component to retrieve. Use one of the PHP 693 693 * predefined constants to specify which one. 694 694 * Defaults to -1 (= return all parts as an array). 695 * @see http ://php.net/manual/en/function.parse-url.php695 * @see https://secure.php.net/manual/en/function.parse-url.php 696 696 * @return mixed False on parse failure; Array of URL components on success; 697 697 * When a specific component has been requested: null if the component 698 698 * doesn't exist in the given URL; a string or - in the case of … … 718 718 * 719 719 * @since 4.7.0 720 720 * 721 * @see http ://php.net/manual/en/url.constants.php721 * @see https://secure.php.net/manual/en/url.constants.php 722 722 * 723 723 * @param int $constant PHP_URL_* constant. 724 724 * @return string|bool The named key or false. -
src/wp-includes/script-loader.php
948 948 * 949 949 * @since 4.6.0 950 950 * 951 * @link http ://api.jqueryui.com/datepicker/#options951 * @link https://api.jqueryui.com/datepicker/#options 952 952 * 953 953 * @global WP_Locale $wp_locale The WordPress date and time locale object. 954 954 */