Changeset 40948
- Timestamp:
- 06/25/2017 10:05:54 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/freedoms.php
r40865 r40948 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 -
trunk/src/wp-admin/includes/dashboard.php
r40905 r40948 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 ) -
trunk/src/wp-content/themes/twentysixteen/functions.php
r40851 r40948 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' ); -
trunk/src/wp-content/themes/twentysixteen/index.php
r40851 r40948 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 -
trunk/src/wp-includes/class-wp-hook.php
r39430 r40948 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. … … 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. … … 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. … … 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. … … 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. … … 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. … … 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 … … 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 … … 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() { -
trunk/src/wp-includes/http.php
r40299 r40948 644 644 * @since 4.7.0 The $component parameter was added for parity with PHP's parse_url(). 645 645 * 646 * @link https://secure.php.net/manual/en/function.parse-url.php 647 * 646 648 * @param string $url The URL to parse. 647 649 * @param int $component The specific component to retrieve. Use one of the PHP 648 650 * predefined constants to specify which one. 649 651 * Defaults to -1 (= return all parts as an array). 650 * @see http://php.net/manual/en/function.parse-url.php651 652 * @return mixed False on parse failure; Array of URL components on success; 652 653 * When a specific component has been requested: null if the component … … 689 690 * @since 4.7.0 690 691 * 692 * @link https://secure.php.net/manual/en/function.parse-url.php 693 * 691 694 * @param array|false $url_parts The parsed URL. Can be false if the URL failed to parse. 692 695 * @param int $component The specific component to retrieve. Use one of the PHP 693 696 * predefined constants to specify which one. 694 697 * Defaults to -1 (= return all parts as an array). 695 * @see http://php.net/manual/en/function.parse-url.php696 698 * @return mixed False on parse failure; Array of URL components on success; 697 699 * When a specific component has been requested: null if the component … … 719 721 * @since 4.7.0 720 722 * 721 * @ see http://php.net/manual/en/url.constants.php723 * @link https://secure.php.net/manual/en/url.constants.php 722 724 * 723 725 * @param int $constant PHP_URL_* constant. -
trunk/src/wp-includes/script-loader.php
r40866 r40948 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.
Note: See TracChangeset
for help on using the changeset viewer.