Home
last modified time | relevance | path

Searched refs:changes (Results 26 – 31 of 31) sorted by last modified time

12

/dokuwiki/lib/plugins/authldap/
H A Dauth.php320 * @param array $changes array of field/value pairs to be changed (password will be clear text)
323 public function modifyUser($user, $changes)
369 $hash = $phash->hash_ssha($changes['pass']);
321 modifyUser($user, $changes) global() argument
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG7 changes - thanks to all who suggested these ideas and gave me the code to show me how!
197 - Minor changes to boundary checks (SF#3077256, BenBE)
286 * Some color changes for AutoIt (BenBE)
388 * Some changes for AppleScript (Stefan Klieme)
415 * Minor style changes in COBOL to improve loading performance (BenBE)
456 - Minor style changes to the following languages:
472 * Updated AutoIt to include latest changes for AutoIt v3.2.12.1 (BenBE, Thierry)
573 - Second part of default style changes. Affected in this release:
636 - First of series of color scheme changes. Affected languages (sofar):
824 - A few keyword changes i
[all...]
/dokuwiki/lib/plugins/config/lang/en/
H A Dintro.txt7 Remember to press the **Save** button before leaving this page otherwise your changes will be lost.
/dokuwiki/lib/plugins/authplain/
H A Dauth.php177 * @param array $changes array of field/value pairs to be changed (password will be clear text)
180 public function modifyUser($user, $changes)
197 if (!is_array($changes) || $changes === []) return true;
201 foreach ($changes as $field => $value) {
173 modifyUser($user, $changes) global() argument
/dokuwiki/inc/Extension/
H A DAuthPlugin.php290 * @param array $changes array of field/value pairs to be changed (password will be clear text)
293 public function modifyUser($user, $changes)
436 * This also means that changes to the user database will not be reflected
443 * This reference file mechanism does not reflect changes done directly in
295 modifyUser($user, $changes) global() argument
/dokuwiki/lib/plugins/authad/
H A Dauth.php577 * @param array $changes array of field/value pairs to be changed
580 public function modifyUser($user, $changes)
590 if (isset($changes['pass'])) {
592 $return = $adldap->user()->password($this->getUserName($user), $changes['pass']);
602 if (isset($changes['name'])) {
604 $parts = explode(' ', $changes['name']);
607 $adchanges['display_name'] = $changes['name'];
609 if (isset($changes['mail'])) {
610 $adchanges['email'] = $changes['mail'];
568 modifyUser($user, $changes) global() argument

12