Ticket #40732: 40732.2.patch
| File 40732.2.patch, 7.8 KB (added by , 9 years ago) |
|---|
-
src/wp-admin/freedoms.php
38 38 <li><p><?php _e( 'You have the freedom to distribute copies of your modified versions to others. By doing this you can give the whole community a chance to benefit from your changes.' ); ?></p></li> 39 39 </ol> 40 40 41 <p><?php printf( __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We’re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 'http ://wordpressfoundation.org/trademark-policy/' ); ?></p>41 <p><?php printf( __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We’re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 'https://wordpressfoundation.org/trademark-policy/' ); ?></p> 42 42 43 43 <p><?php 44 44 -
src/wp-admin/includes/dashboard.php
1459 1459 } 1460 1460 $notice .= "<p class='browser-update-nag{$browser_nag_class}'>{$msg}</p>"; 1461 1461 1462 $browsehappy = 'http ://browsehappy.com/';1462 $browsehappy = 'https://browsehappy.com/'; 1463 1463 $locale = get_user_locale(); 1464 1464 if ( 'en_US' !== $locale ) 1465 1465 $browsehappy = add_query_arg( 'locale', $locale, $browsehappy ); -
src/wp-content/themes/twentysixteen/functions.php
78 78 /* 79 79 * Enable support for Post Thumbnails on posts and pages. 80 80 * 81 * @link http ://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails81 * @link https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails 82 82 */ 83 83 add_theme_support( 'post-thumbnails' ); 84 84 set_post_thumbnail_size( 1200, 9999 ); -
src/wp-content/themes/twentysixteen/index.php
7 7 * It is used to display a page when nothing more specific matches a query. 8 8 * E.g., it puts together the home page when no home.php file exists. 9 9 * 10 * @link http ://codex.wordpress.org/Template_Hierarchy10 * @link https://codex.wordpress.org/Template_Hierarchy 11 11 * 12 12 * @package WordPress 13 13 * @subpackage Twenty_Sixteen -
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
956 956 * 957 957 * @since 4.6.0 958 958 * 959 * @link http ://api.jqueryui.com/datepicker/#options959 * @link https://api.jqueryui.com/datepicker/#options 960 960 * 961 961 * @global WP_Locale $wp_locale The WordPress date and time locale object. 962 962 */