Manual:$wgAllowTitlesInSVG/ru
Эта функция была полностью удалена в версии 1.35.0. |
SVG: $wgAllowTitlesInSVG | |
---|---|
Allow <title> tag in SVG files. |
|
Введено в версии: | 1.7.0 (r14084) |
Устарела с версии: | 1.34.0 (Gerrit change 487527; git #2e833876) |
Удалено в версии: | 1.35.0 (Gerrit change 574920; git #I7c54d28) |
Допустимые значения: | (boolean) |
Значение по умолчанию: | true (1.34)false (1.7-1.33) |
Другие настройки: По алфавиту | По функциональности |
Подробнее
If true, the text <title>
will be allowed in files with a "svg" file extension or "image/svg+xml" MIME type.
MediaWiki will reject HTML-esque tags (including <title>
) in uploaded files, as some browsers can't perform basic stuff like MIME detection and are therefore vulnerable to displaying valid image files as HTML and doing insecure things.
You should leave this set to false if your web server is misconfigured and doesn't send appropriate MIME types for SVG images.
What are appropriate MIME types for SVG images? Well, that is currently under debate at the W3C[1], but you should see Content-Type: image/svg+xml
in response headers when making a GET request for an svg file.
You can easily check your server using the W3C's online SVG check tool.
Or, from the command-line with curl:
curl -I https://mywiki.example.org/w/img_auth.php/0/09/MediaWiki_Architecture.svg
HTTP/1.1 200 OK Date: Sun, 11 Feb 2018 05:01:23 GMT Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.6.33 X-Powered-By: PHP/5.6.33 X-Content-Type-Options: nosniff Last-Modified: Sat, 01 Jul 2017 15:50:20 GMT Content-Length: 69832 Content-Type: image/svg+xml