mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-23 23:20:57 +01:00
remove named parameters from call_user_func_array calls (#402)
This commit is contained in:
parent
4db4ab9cf0
commit
d6ea8db5ef
7
mod.php
7
mod.php
@ -180,7 +180,12 @@ foreach ($pages as $uri => $handler) {
|
||||
);
|
||||
$debug['time']['parse_mod_req'] = '~' . round((microtime(true) - $parse_start_time) * 1000, 2) . 'ms';
|
||||
}
|
||||
|
||||
|
||||
if (is_array($matches)) {
|
||||
// we don't want to call named parameters (PHP 8)
|
||||
$matches = array_values($matches);
|
||||
}
|
||||
|
||||
if (is_string($handler)) {
|
||||
if ($handler[0] == ':') {
|
||||
header('Location: ' . substr($handler, 1), true, $config['redirect_http']);
|
||||
|
Loading…
Reference in New Issue
Block a user