Revert the last use of `str_starts_with()` in `update-core.php`.
Fixes updating WordPress from 5.7 and earlier versions. When doing the update this file runs first in the old version where the polifills may not be available. Porps: frankit. Fixes: #59145. Built from https://develop.svn.wordpress.org/trunk@56417 git-svn-id: http://core.svn.wordpress.org/trunk@55929 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b5e754ee35
commit
7715c78c85
|
@ -1431,9 +1431,13 @@ function update_core( $from, $to ) {
|
||||||
} else {
|
} else {
|
||||||
$lang_dir = WP_CONTENT_DIR . '/languages';
|
$lang_dir = WP_CONTENT_DIR . '/languages';
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
|
* Note: str_starts_with() is not used here, as this file is included
|
||||||
|
* when updating from older WordPress versions, in which case
|
||||||
|
* the polyfills from wp-includes/compat.php may not be available.
|
||||||
|
*/
|
||||||
// Check if the language directory exists first.
|
// Check if the language directory exists first.
|
||||||
if ( ! @is_dir( $lang_dir ) && str_starts_with( $lang_dir, ABSPATH ) ) {
|
if ( ! @is_dir( $lang_dir ) && 0 === strpos( $lang_dir, ABSPATH ) ) {
|
||||||
// If it's within the ABSPATH we can handle it here, otherwise they're out of luck.
|
// If it's within the ABSPATH we can handle it here, otherwise they're out of luck.
|
||||||
$wp_filesystem->mkdir( $to . str_replace( ABSPATH, '', $lang_dir ), FS_CHMOD_DIR );
|
$wp_filesystem->mkdir( $to . str_replace( ABSPATH, '', $lang_dir ), FS_CHMOD_DIR );
|
||||||
clearstatcache(); // For FTP, need to clear the stat cache.
|
clearstatcache(); // For FTP, need to clear the stat cache.
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.4-alpha-56416';
|
$wp_version = '6.4-alpha-56417';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue