Home
last modified time | relevance | path

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

12

/dokuwiki/lib/plugins/authpdo/
H A Dauth.php252 * @param array $changes array of field/value pairs to be changed (password will be clear text)
255 public function modifyUser($user, $changes)
265 if (isset($changes['user'])) {
266 if ($this->getUserData($changes['user'], false)) goto FAIL;
268 $params['newlogin'] = $changes['user'];
275 if (isset($changes['pass'])) {
277 $params['clear'] = $changes['pass'];
278 $params['hash'] = auth_cryptPassword($changes['pass']);
285 if (isset($changes['mail']) || isset($changes['nam
295 modifyUser($user, $changes) global() argument
[all...]
/dokuwiki/lib/tpl/dokuwiki/
H A Dstyle.ini4 ; To extend this file or make changes to it, it is recommended to create
6 ; any changes after an upgrade.
7 ; Please don't forget to copy the section your changes should be under
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_edit.css93 /* summary input and minor changes checkbox */
H A D_media_fullscreen.css440 #mediamanager__page form.changes ul {
445 [dir=rtl] #mediamanager__page form.changes ul {
450 #mediamanager__page form.changes ul li div.li div {
455 [dir=rtl] #mediamanager__page form.changes ul li div.li div {
459 #mediamanager__page form.changes ul li div.li input {
H A D_recent.css2 * This file provides styles for the recent changes (?do=recent) and
6 /*____________ list of revisions / recent changes ____________*/
13 .dokuwiki form.changes ul li {
17 [dir=rtl] .dokuwiki form.changes ul li {
20 .dokuwiki form.changes ul li span,
21 .dokuwiki form.changes ul li a {
24 .dokuwiki form.changes ul li span.user a {
27 .dokuwiki form.changes ul li.minor {
31 .dokuwiki form.changes li span.date {
33 .dokuwiki form.changes l
[all...]
H A Dcontent.less201 /* changes to underscored CSS files
216 /*____________ changes to _edit ____________*/
284 /*____________ changes to _toc ____________*/
363 /*____________ changes to _imgdetail ____________*/
H A Dmobile.less130 .dokuwiki form.changes ul {
133 [dir=rtl] .dokuwiki form.changes ul {
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php229 $changes = [];
232 $changes['grps'] = $oldinfo['grps'];
235 $changes['grps'][] = $group;
240 if (!empty(array_diff($changes['grps'], $oldinfo['grps']))) {
241 if ($auth->triggerUserMod('modify', [$name, $changes])) {
267 $changes = [];
270 $changes['grps'] = $oldinfo['grps'];
272 if (($pos = array_search($group, $changes['grps'])) == !false) {
273 unset($changes['grps'][$pos]);
278 if (!empty(array_diff($oldinfo['grps'], $changes['grp
[all...]
H A Dadmin.php789 $changes = [];
801 $changes['user'] = $newuser;
807 $changes['pass'] = $newpass;
813 $changes['pass'] = auth_pwgen($olduser);
818 $changes['name'] = $newname;
821 $changes['mail'] = $newmail;
824 $changes['grps'] = $newgrps;
827 if ($ok = $this->auth->triggerUserMod('modify', [$olduser, $changes])) {
830 if ($INPUT->has('usernotify') && !empty($changes['pass'])) {
831 $notify = empty($changes['use
[all...]
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php71 // subscription target is a namespace, get all changes within
72 $changes = getRecentsSince($lastupdate, null, getNS($target));
79 $changes = [$meta['last_change']];
84 foreach ($changes as $rev) {
182 * Sends a digest mail showing a bunch of changes of a single page. Basically the same as sendPageDiff()
/dokuwiki/inc/lang/en/
H A Dmailtext.txt12 There may be newer changes after this revision. If this
H A Dsubscr_single.txt4 Here are the changes:
19 and unsubscribe page and/or namespace changes.
H A Dsubscr_digest.txt4 Here are the changes:
16 and unsubscribe page and/or namespace changes.
H A Dsubscr_list.txt13 and unsubscribe page and/or namespace changes.
/dokuwiki/vendor/aziraphale/email-address-validator/
H A DREADME.md28 Note that this updated version is **version 2.0.0**. I have kept the original class tagged as **version 1.0.10** (it was the 10th commit to the Google Code svn repository). If you want to use Composer to install the **old** class, simply specify `^1` as the version constraint (which will allow for backwards-compatible changes to be installed, if any get made, while never jumping to my modified class without your direct action):
34 Due to the aforementioned changes, the way of using this class has completely changed. However it has such a small and simple interface that these changes shouldn't be problematic.
/dokuwiki/inc/Remote/
H A DApiCore.php80 * This is the version of the DokuWiki API. It increases whenever the API definition changes.
351 * Get recent page changes
353 * Returns a list of recent changes to wiki pages. The results can be limited to changes newer than
356 * Only changes within the configured `$conf['recent']` range are returned. This is the default
360 * @param int $timestamp Only show changes newer than this unix timestamp
369 $changes = [];
371 $changes[] = new PageChange(
382 return $changes;
781 * Get recent media changes
[all...]
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DLICENSE45 with the library after making changes to the library and recompiling
293 changes were used in the work (which must be distributed under
299 that the user who changes the contents of definitions files in the
H A DREADME.md116 considered beta due to some internal changes
/dokuwiki/data/pages/wiki/
H A Ddokuwiki.txt28 * [[doku>changes|Change Log]]
H A Dsyntax.txt68 * When a section's heading is changed, its bookmark changes, too. So don't rely on section linking too much.
/dokuwiki/inc/
H A Dauth.php1056 $changes = [];
1057 $changes['pass'] = $INPUT->post->str('newpass');
1058 $changes['name'] = $INPUT->post->str('fullname');
1059 $changes['mail'] = $INPUT->post->str('email');
1062 if ($changes['pass'] != $INPUT->post->str('passchk')) {
1068 $changes['name'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['name']));
1069 $changes['mail'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['mail']));
1073 (empty($changes['nam
[all...]
/dokuwiki/lib/plugins/styling/lang/en/
H A Dintro.txt2 All changes are stored in a local configuration file and are upgrade safe
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md3 All notable changes to this project will be documented in this file.
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE45 with the library after making changes to the library and recompiling
288 changes were used in the work (which must be distributed under
294 that the user who changes the contents of definitions files in the
H A DReadMe.txt112 Should you need to do changes to the tables you can do so, but beware of the consequences.

12