1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Enhancement: Enable and configure concat_space fixer

Closes GH-657.
This commit is contained in:
Andreas Möller
2022-08-22 19:04:47 +02:00
committed by GitHub
parent d9bcfed482
commit 57f505ed58
20 changed files with 58 additions and 55 deletions

View File

@@ -664,7 +664,7 @@ if ($try) {
}
// BC. The class methods are now classname.methodname
if (preg_match("!^manual/(.+)/function\.(.+)-(.+).php$!", $URI, $array)) {
$try = find_manual_page($array[1], $array[2]. "." .$array[3]);
$try = find_manual_page($array[1], $array[2] . "." . $array[3]);
if ($try) {
status_header(301);
mirror_redirect($try);