Make WordPress Core

Ticket #40732: 40732.patch

File 40732.patch, 5.3 KB (added by johnpgreen, 8 years ago)
  • src/wp-admin/includes/dashboard.php

     
    14621462                }
    14631463                $notice .= "<p class='browser-update-nag{$browser_nag_class}'>{$msg}</p>";
    14641464
    1465                 $browsehappy = 'http://browsehappy.com/';
     1465                $browsehappy = 'https://browsehappy.com/';
    14661466                $locale = get_user_locale();
    14671467                if ( 'en_US' !== $locale )
    14681468                        $browsehappy = add_query_arg( 'locale', $locale, $browsehappy );
  • src/wp-includes/class-wp-hook.php

     
    407407         * @since 4.7.0
    408408         * @access public
    409409         *
    410          * @link http://php.net/manual/en/arrayaccess.offsetexists.php
     410         * @link https://secure.php.net/manual/en/arrayaccess.offsetexists.php
    411411         *
    412412         * @param mixed $offset An offset to check for.
    413413         * @return bool True if the offset exists, false otherwise.
     
    422422         * @since 4.7.0
    423423         * @access public
    424424         *
    425          * @link http://php.net/manual/en/arrayaccess.offsetget.php
     425         * @link https://secure.php.net/manual/en/arrayaccess.offsetget.php
    426426         *
    427427         * @param mixed $offset The offset to retrieve.
    428428         * @return mixed If set, the value at the specified offset, null otherwise.
     
    437437         * @since 4.7.0
    438438         * @access public
    439439         *
    440          * @link http://php.net/manual/en/arrayaccess.offsetset.php
     440         * @link https://secure.php.net/manual/en/arrayaccess.offsetset.php
    441441         *
    442442         * @param mixed $offset The offset to assign the value to.
    443443         * @param mixed $value The value to set.
     
    456456         * @since 4.7.0
    457457         * @access public
    458458         *
    459          * @link http://php.net/manual/en/arrayaccess.offsetunset.php
     459         * @link https://secure.php.net/manual/en/arrayaccess.offsetunset.php
    460460         *
    461461         * @param mixed $offset The offset to unset.
    462462         */
     
    470470         * @since 4.7.0
    471471         * @access public
    472472         *
    473          * @link http://php.net/manual/en/iterator.current.php
     473         * @link https://secure.php.net/manual/en/iterator.current.php
    474474         *
    475475         * @return array Of callbacks at current priority.
    476476         */
     
    484484         * @since 4.7.0
    485485         * @access public
    486486         *
    487          * @link http://php.net/manual/en/iterator.next.php
     487         * @link https://secure.php.net/manual/en/iterator.next.php
    488488         *
    489489         * @return array Of callbacks at next priority.
    490490         */
     
    498498         * @since 4.7.0
    499499         * @access public
    500500         *
    501          * @link http://php.net/manual/en/iterator.key.php
     501         * @link https://secure.php.net/manual/en/iterator.key.php
    502502         *
    503503         * @return mixed Returns current priority on success, or NULL on failure
    504504         */
     
    512512         * @since 4.7.0
    513513         * @access public
    514514         *
    515          * @link http://php.net/manual/en/iterator.valid.php
     515         * @link https://secure.php.net/manual/en/iterator.valid.php
    516516         *
    517517         * @return boolean
    518518         */
     
    526526         * @since 4.7.0
    527527         * @access public
    528528         *
    529          * @link http://php.net/manual/en/iterator.rewind.php
     529         * @link https://secure.php.net/manual/en/iterator.rewind.php
    530530         */
    531531        public function rewind() {
    532532                reset( $this->callbacks );
  • src/wp-includes/http.php

     
    647647 * @param int    $component The specific component to retrieve. Use one of the PHP
    648648 *                          predefined constants to specify which one.
    649649 *                          Defaults to -1 (= return all parts as an array).
    650  *                          @see http://php.net/manual/en/function.parse-url.php
     650 *                          @see https://secure.php.net/manual/en/function.parse-url.php
    651651 * @return mixed False on parse failure; Array of URL components on success;
    652652 *               When a specific component has been requested: null if the component
    653653 *               doesn't exist in the given URL; a string or - in the case of
     
    692692 * @param int    $component The specific component to retrieve. Use one of the PHP
    693693 *                          predefined constants to specify which one.
    694694 *                          Defaults to -1 (= return all parts as an array).
    695  *                          @see http://php.net/manual/en/function.parse-url.php
     695 *                          @see https://secure.php.net/manual/en/function.parse-url.php
    696696 * @return mixed False on parse failure; Array of URL components on success;
    697697 *               When a specific component has been requested: null if the component
    698698 *               doesn't exist in the given URL; a string or - in the case of
     
    718718 *
    719719 * @since 4.7.0
    720720 *
    721  * @see   http://php.net/manual/en/url.constants.php
     721 * @see   https://secure.php.net/manual/en/url.constants.php
    722722 *
    723723 * @param int $constant PHP_URL_* constant.
    724724 * @return string|bool The named key or false.
  • src/wp-includes/script-loader.php

     
    948948 *
    949949 * @since 4.6.0
    950950 *
    951  * @link http://api.jqueryui.com/datepicker/#options
     951 * @link https://api.jqueryui.com/datepicker/#options
    952952 *
    953953 * @global WP_Locale $wp_locale The WordPress date and time locale object.
    954954 */