https://bugzilla.wikimedia.org/show_bug.cgi?id=35454

       Web browser: ---
             Bug #: 35454
           Summary: Error in .htaccess file that address Bug 23285
           Product: MediaWiki
           Version: 1.18.2
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: normal
          Priority: Unprioritized
         Component: Images and files
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected], [email protected]
    Classification: Unclassified
   Mobile Platform: ---


The .htaccess file installed in the images directory to address Bug 23285
includes the line:

RewriteCond %{QUERY_STRING} \.[^\\/:*?\x22<>|%]+(#|\?|$) [nocase]

However, the # sign in the regex indicates that the remainder of the line
should be treated as a comment.

The line should be corrected, by escaping the # sign as follows:

RewriteCond %{QUERY_STRING} \.[^\\/:*?\x22<>|%]+(\#|\?|$) [nocase]

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to