* Update extensions/AbuseFilter from branch 'REL1_43'
to 6ebcd929c7f7a2f8be715dfe39c59b53570829f0
- SECURITY: Use correct bitwise operator on CentralDBNotAvailableException
Why:
* When FilterLookup::getFilter throws a
CentralDBNotAvailableException, the code which calls it
sometimes catches the exception and then assumes the filter
has the maximum privacy level.
* This logic is broken as the wrong PHP bitwise operator is used
("&" instead of "|").
What:
* Update all uses of "&" to "|" in the affected places.
Bug: T389235
Change-Id: Idb08add69a55fb387ec51fb220cafc46542afd1a
|
||
|---|---|---|
| .. | ||
| AbuseFilter@6ebcd929c7 | ||
| CategoryTree@577b42353f | ||
| Cite@3966086815 | ||
| CiteThisPage@8daea44797 | ||
| CodeEditor@627d1ac42e | ||
| ConfirmEdit@4787b2e4be | ||
| DiscussionTools@c834d0c8b3 | ||
| Echo@951879a418 | ||
| Gadgets@94c0d38d5a | ||
| ImageMap@1aa7ea696c | ||
| InputBox@a8184c4572 | ||
| Interwiki@94a99a1da1 | ||
| Linter@2d01a58ff4 | ||
| LoginNotify@4d98bf8ce1 | ||
| Math@2360e60228 | ||
| MultimediaViewer@df4c8ca9c2 | ||
| Nuke@45f54278c2 | ||
| OATHAuth@53f358b6ed | ||
| PageImages@d180283a0d | ||
| ParserFunctions@7199d85488 | ||
| PdfHandler@895c866eed | ||
| Poem@8c1e853e2e | ||
| ReplaceText@f5d1655cb9 | ||
| Scribunto@8deace1032 | ||
| SecureLinkFixer@2435a55c6b | ||
| SpamBlacklist@b7e906f612 | ||
| SyntaxHighlight_GeSHi@c9db27e9a2 | ||
| TemplateData@514b72c1cd | ||
| TextExtracts@3e98cd61c2 | ||
| Thanks@40a5ba7f41 | ||
| TitleBlacklist@8e8ebe0258 | ||
| VisualEditor@b890dad267 | ||
| WikiEditor@67f6158919 | ||
| .gitignore | ||
| .vsls.json | ||
| README | ||
== User Information ==
Extensions are distributed separately. Drop them into this directory and enable
as per the extension's installation instructions.
You can find a list of extensions and documentation at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Category:Extensions>.
== Development Information ==
If you are a developer, you might want to fetch the extension tree in another
directory and make a symbolic link:
mediawiki/extensions$ ln -s ../../extensions-trunk/FooBar
Most extensions are available through Git:
https://gerrit.wikimedia.org/g/mediawiki/extensions
Please note that under POSIX systems (Linux...), parent of a symbolic path
refers to the link source, NOT to the target! You should check the env
variable MW_INSTALL_PATH in case the extension is not in the default location.
The following code snippet lets you override the default path:
$IP = getenv( 'MW_INSTALL_PATH' );
if ( $IP === false ) {
$IP = __DIR__ . '/../..';
}
require_once "$IP/maintenance/Maintenance.php"; // a MediaWiki core file