summaryrefslogtreecommitdiffstats
path: root/wp-admin/includes/class-theme-installer-skin.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-admin/includes/class-theme-installer-skin.php')
-rw-r--r--wp-admin/includes/class-theme-installer-skin.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/wp-admin/includes/class-theme-installer-skin.php b/wp-admin/includes/class-theme-installer-skin.php
index d83e038..85f8797 100644
--- a/wp-admin/includes/class-theme-installer-skin.php
+++ b/wp-admin/includes/class-theme-installer-skin.php
@@ -24,6 +24,12 @@ class Theme_Installer_Skin extends WP_Upgrader_Skin {
private $is_downgrading = false;
/**
+ * Constructor.
+ *
+ * Sets up the theme installer skin.
+ *
+ * @since 2.8.0
+ *
* @param array $args
*/
public function __construct( $args = array() ) {
@@ -328,13 +334,13 @@ class Theme_Installer_Skin extends WP_Upgrader_Skin {
$warning = sprintf(
/* translators: %s: Documentation URL. */
__( 'You are uploading an older version of the active theme. You can continue to install the older version, but be sure to <a href="%s">back up your database and files</a> first.' ),
- __( 'https://wordpress.org/documentation/article/wordpress-backups/' )
+ __( 'https://developer.wordpress.org/advanced-administration/security/backup/' )
);
} else {
$warning = sprintf(
/* translators: %s: Documentation URL. */
__( 'You are updating a theme. Be sure to <a href="%s">back up your database and files</a> first.' ),
- __( 'https://wordpress.org/documentation/article/wordpress-backups/' )
+ __( 'https://developer.wordpress.org/advanced-administration/security/backup/' )
);
}