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

@@ -950,10 +950,10 @@ function wp_dashboard_recent_posts( $args ) {
} elseif ( gmdate( 'Y-m-d', $time ) == $tomorrow ) {
$relative = __( 'Tomorrow' );
} elseif ( gmdate( 'Y', $time ) !== $year ) {
/* translators: Date and time format for recent posts on the dashboard, from a different calendar year, see https://secure.php.net/date */
/* translators: Date and time format for recent posts on the dashboard, from a different calendar year, see https://www.php.net/date */
$relative = date_i18n( __( 'M jS Y' ), $time );
} else {
/* translators: Date and time format for recent posts on the dashboard, see https://secure.php.net/date */
/* translators: Date and time format for recent posts on the dashboard, see https://www.php.net/date */
$relative = date_i18n( __( 'M jS' ), $time );
}