Extensions to abort search do nothing

Created on 1 August 2019, over 5 years ago
Updated 17 May 2023, almost 2 years ago

I think extensions to abort search will never work because of a bug in search404GetKeys()

dots removed here

$path = preg_replace('/[_+-.,!@#$^&*();\'"?=]|[|]|[{}]|[<>]/', '/', $path);

dots expected below

if (preg_match("/\.($extensions)$/i", $key)) {

Correct me if I'm wrong as I'm not too good with regexps. Removing \. solves the problem...

if (preg_match("/($extensions)$/i", $key)) {

... but now it skips search404 for any request with one of "extensions to abort" anywhere in URI (/some/png/article123 or /some.png)

I ended up with this

     if (!empty($extensions)) {
       $ext = array_pop($keys); // get the last keyword which probably is extension
       if (preg_match("/($extensions)$/i", $ext)) {
         return FALSE;
       }
     }
🐛 Bug report
Status

Closed: duplicate

Version

1.0

Component

Code

Created by

🇷🇺Russia scoff

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024