Make WordPress Core


Ignore:
Timestamp:
06/10/2016 04:49:09 AM (9 years ago)
Author:
peterwilsoncc
Message:

DOCS: Replace HTTP links with HTTPS.

Replaces unsecure links in documentation and translator comments with their secure versions.

Props johnpgreen, netweb

Fixes #36993

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/wp-db.php

    r37601 r37674  
    12551255     * Does not support argument numbering/swapping.
    12561256     *
    1257      * May be called like {@link http://php.net/sprintf sprintf()} or like {@link http://php.net/vsprintf vsprintf()}.
     1257     * May be called like {@link https://secure.php.net/sprintf sprintf()} or like {@link https://secure.php.net/vsprintf vsprintf()}.
    12581258     *
    12591259     * Both %d and %s should be left unquoted in the query string.
     
    12621262     *     wpdb::prepare( "SELECT DATE_FORMAT(`field`, '%%c') FROM `table` WHERE `column` = %s", 'foo' );
    12631263     *
    1264      * @link http://php.net/sprintf Description of syntax.
     1264     * @link https://secure.php.net/sprintf Description of syntax.
    12651265     * @since 2.3.0
    12661266     *
    12671267     * @param string      $query    Query statement with sprintf()-like placeholders
    12681268     * @param array|mixed $args     The array of variables to substitute into the query's placeholders if being called like
    1269      *                              {@link http://php.net/vsprintf vsprintf()}, or the first variable to substitute into the query's placeholders if
    1270      *                              being called like {@link http://php.net/sprintf sprintf()}.
     1269     *                              {@link https://secure.php.net/vsprintf vsprintf()}, or the first variable to substitute into the query's placeholders if
     1270     *                              being called like {@link https://secure.php.net/sprintf sprintf()}.
    12711271     * @param mixed       $args,... further variables to substitute into the query's placeholders if being called like
    1272      *                              {@link http://php.net/sprintf sprintf()}.
     1272     *                              {@link https://secure.php.net/sprintf sprintf()}.
    12731273     * @return string|void Sanitized query string, if there is a query to prepare.
    12741274     */
Note: See TracChangeset for help on using the changeset viewer.