DefaultSettings: Remove "~~~~" from comment to fix Doxygen parse error
authorTimo Tijhof <krinklemail@gmail.com>
Tue, 31 Mar 2015 23:53:25 +0000 (00:53 +0100)
committerKrinkle <krinklemail@gmail.com>
Thu, 2 Apr 2015 19:58:09 +0000 (19:58 +0000)
commitefc24d92e9057f1ac331e8465398a2b5a4c9fbad
tree2018a50806e6c1a0b51620ac244cbd424e355d5e
parent15e8dc1ecfec313da1477a87f16321da775bd78a
DefaultSettings: Remove "~~~~" from comment to fix Doxygen parse error

> /includes/DefaultSettings.php:7478:
>  warning: reached end of file while inside a ~~~ block!
>  The command that should end the block seems to be missing!

Three or more tildes in plain text results in the beginning of
a fenced code block.
http://doxygen.org/manual/markdown.html
https://michelf.ca/projects/php-markdown/extra/#fenced-code-blocks

It stopped parsing after $wgUrlProtocols and ignored the rest.
I tried to escape it in different ways but couldn't find any method
that keeps the string readable and inline. If it's important we can
put it back in an indented code block.

Change-Id: If350a917c6afaebcd45f246404b6b6195453e51e
includes/DefaultSettings.php