Skip to content

Commit 0a39d89

Browse files
committed
Fix mirror-info.php to work on PHP8 (arg order to join/implode)
1 parent 2621743 commit 0a39d89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mirror-info.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function_exists('hash_file') &&
2929
// Gets all available sqlite versions for possible future sqlite wrapper
3030
$sqlite = get_available_sqlites();
3131

32-
$exts = join(get_loaded_extensions(), ',');
32+
$exts = implode(',', get_loaded_extensions());
3333

3434
echo join('|', array(
3535
$MYSITE, // 0 : CNAME for mirror as accessed (CC, CC1, etc.)

0 commit comments

Comments
 (0)