mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
Fix mirror-info.php to work on PHP8 (arg order to join/implode)
This commit is contained in:
@@ -29,7 +29,7 @@ if (!file_exists($filename)) {
|
||||
// Gets all available sqlite versions for possible future sqlite wrapper
|
||||
$sqlite = get_available_sqlites();
|
||||
|
||||
$exts = join(get_loaded_extensions(), ',');
|
||||
$exts = implode(',', get_loaded_extensions());
|
||||
|
||||
echo join('|', array(
|
||||
$MYSITE, // 0 : CNAME for mirror as accessed (CC, CC1, etc.)
|
||||
|
||||
Reference in New Issue
Block a user