summaryrefslogtreecommitdiff
path: root/lib/plugins/authplain/_test
Commit message (Collapse)AuthorAge
* 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
|
* 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.