From d51564e552eace3ea13a6efdc99a19d79fc15bb3 Mon Sep 17 00:00:00 2001 From: joedolson Date: Sat, 4 Oct 2025 00:47:31 +0000 Subject: [PATCH] Upgrade/Install: WordPress text shows over logo on tab. On the upgrade and repair screens, the logo link to wordpress.org was hidden using negative `text-indent`. This method makes the link impossible to click on using a mouse, and causes the text to overlay the image on keyboard focus. On the install screen, if PHP is not running, the styles are not applied, leaving an unstyled link. Remove the links for consistency with other screens following r47745. Props johnbillion, sabernhardt, joedolson. Fixes #63950. Built from https://develop.svn.wordpress.org/trunk@60898 git-svn-id: http://core.svn.wordpress.org/trunk@60234 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/install.php | 1 - wp-admin/maint/repair.php | 2 +- wp-admin/upgrade.php | 2 +- wp-includes/version.php | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/wp-admin/install.php b/wp-admin/install.php index 82c1ac8fee..64cb4104c4 100644 --- a/wp-admin/install.php +++ b/wp-admin/install.php @@ -16,7 +16,6 @@ if ( false ) { Error: PHP is not running -

Error: PHP is not running

WordPress requires that your web server is running PHP. Your server does not have PHP installed, or PHP is turned off.

diff --git a/wp-admin/maint/repair.php b/wp-admin/maint/repair.php index 483f089d06..4646a3794b 100644 --- a/wp-admin/maint/repair.php +++ b/wp-admin/maint/repair.php @@ -21,7 +21,7 @@ header( 'Content-Type: text/html; charset=utf-8' ); - + - + diff --git a/wp-includes/version.php b/wp-includes/version.php index cd7e0cd223..dfc1e75140 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60897'; +$wp_version = '6.9-alpha-60898'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.