summaryrefslogtreecommitdiff
path: root/lib/plugins/authplain/_test
Commit message (Collapse)AuthorAge
* add more plugin groups to authplain testChristopher Smith2015-04-01
|
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-01-10
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* Merge remote-tracking branch 'origin/master' into scrutinizerissuesGerrit Uitslag2014-12-09
|\ | | | | | | | | | | | | | | | | Conflicts: inc/media.php inc/plugin.php inc/template.php lib/plugins/authplain/_test/escaping.test.php lib/plugins/syntax.php
| * escaping backslash should be included in split itemsChristopher Smith2014-10-04
| |
| * Fix for issues 877 & 885 related to a bug in PCRE 6.6Christopher Smith2014-10-03
| |
* | PHPDocs and some improvementsGerrit Uitslag2014-10-02
|/
* authplain: Escape ':' in any data field as '\:'Angus Gratton2014-07-01
':' is the field delimiter in the authplain flat text conf/users.auth.php file, but it's also used as an internal delimiter for the 'mediawiki' password hash format. Currently using this hash format corrupts the file This change escapes ':' as '\:' in any field in the users.auth.php file, and any '\' as '\\'. Also adds test cases for escaping modes.