Update WordPress 5.9.2 -> 5.9.3

This commit is contained in:
Aleksandar Puharic 2022-05-25 19:21:09 +02:00
parent 695976655e
commit ea0f123c1f
Signed by: xZero707
GPG Key ID: 3CC53DCAA9C237BB
2 changed files with 24 additions and 2 deletions

View File

@ -1,5 +1,5 @@
group "default" {
targets = ["5.3.0", "5.3.1", "5.3.2", "5.4.0", "5.4.1", "5.4.2", "5.5.1", "5.5.3", "5.6.0", "5.6.1", "5.6.2", "5.7.0", "5.7.1", "5.7.2", "5.8.0", "5.8.1", "5.8.2", "5.8.3", "5.9.0", "5.9.1", "5.9.2"]
targets = ["5.3.0", "5.3.1", "5.3.2", "5.4.0", "5.4.1", "5.4.2", "5.5.1", "5.5.3", "5.6.0", "5.6.1", "5.6.2", "5.7.0", "5.7.1", "5.7.2", "5.8.0", "5.8.1", "5.8.2", "5.8.3", "5.9.0", "5.9.1", "5.9.2", "5.9.3"]
}
target "build-dockerfile" {
@ -176,8 +176,16 @@ target "5.9.1" {
target "5.9.2" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
tags = ["docker.io/nlss/wordpress:5.9.2", "docker.io/nlss/wordpress:5.9", "docker.io/nlss/wordpress:latest"]
tags = ["docker.io/nlss/wordpress:5.9.2"]
args = {
WP_VERSION = "5.9.2"
}
}
target "5.9.3" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
tags = ["docker.io/nlss/wordpress:5.9.3", "docker.io/nlss/wordpress:5.9", "docker.io/nlss/wordpress:latest"]
args = {
WP_VERSION = "5.9.3"
}
}

View File

@ -0,0 +1,14 @@
--- update-core.php 2022-05-25 19:16:03.906128294 +0200
+++ update-core.php 2022-05-25 19:16:56.079812565 +0200
@@ -1096,6 +1096,11 @@
wp_die( __( 'Sorry, you are not allowed to update this site.' ) );
}
+ wp_die(
+ __( 'Sorry, you are not allowed to update this site.' ) .
+ ' Click <a href="https://github.com/N0rthernL1ghts/wordpress/wiki/WordPress-Core-Updates">here</a> to learn why.'
+ );
+
check_admin_referer( 'upgrade-core' );
// Do the (un)dismiss actions before headers, so that they can redirect.