External Libraries: Comment out magic quote functions in getID3().

For some reason, the `version_compare()` check does not work as expected on Travis.

Follow-up to [46113], [47601].

See #49945.
Built from https://develop.svn.wordpress.org/trunk@47603


git-svn-id: http://core.svn.wordpress.org/trunk@47378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-04-20 12:12:06 +00:00
parent 1bac2cbe66
commit e9e5d8e2b2
2 changed files with 5 additions and 1 deletions

View File

@ -298,6 +298,9 @@ class getID3
// check for magic quotes in PHP < 7.4.0 (when these functions became deprecated)
if (version_compare(PHP_VERSION, '7.4.0', '<')) {
// WORDPRESS CHANGE FROM UPSTREAM
// Comment out deprecated function
/*
// Check for magic_quotes_runtime
if (function_exists('get_magic_quotes_runtime')) {
if (get_magic_quotes_runtime()) {
@ -310,6 +313,7 @@ class getID3
$this->startup_error .= 'magic_quotes_gpc must be disabled before running getID3(). Surround getid3 block by set_magic_quotes_gpc(0) and set_magic_quotes_gpc(1).'."\n";
}
}
**/
}
// Load support library

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-alpha-47602';
$wp_version = '5.5-alpha-47603';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.