Docs: Update links to https://secure.php.net/, they now redirect to https://www.php.net/.

See #48303.

git-svn-id: https://develop.svn.wordpress.org/trunk@47088 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2020-01-20 03:12:12 +00:00
parent 88836de35c
commit a8f4ed69de
29 changed files with 73 additions and 73 deletions

View File

@@ -106,9 +106,9 @@ if ( 'approved' === wp_get_comment_status( $comment ) && $comment->comment_post_
$submitted = sprintf(
/* translators: 1: Comment date, 2: Comment time. */
__( '%1$s at %2$s' ),
/* translators: Publish box date format, see https://secure.php.net/date */
/* translators: Publish box date format, see https://www.php.net/date */
date_i18n( _x( 'M j, Y', 'publish box date format' ), strtotime( $comment->comment_date ) ),
/* translators: Publish box time format, see https://secure.php.net/date */
/* translators: Publish box time format, see https://www.php.net/date */
date_i18n( _x( 'H:i', 'publish box time format' ), strtotime( $comment->comment_date ) )
);
?>