History log of /dokuwiki/inc/Action/Resendpwd.php (Results 1 – 19 of 19)
Revision Date Author Comments
# 90fb952c 31-Aug-2023 Andreas Gohr <andi@splitbrain.org>

code style: operator spacing


# 177d6836 31-Aug-2023 Andreas Gohr <andi@splitbrain.org>

coding style: control flow whitespaces


# 73022918 30-Aug-2023 Andreas Gohr <andi@splitbrain.org>

coding style: PSR12.Classes.ClassInstantiation.MissingParentheses


# 8c7c53b0 30-Aug-2023 Andreas Gohr <andi@splitbrain.org>

codestyle adjustments: class declaration braces


# 6723156f 29-Aug-2023 Andreas Gohr <andi@splitbrain.org>

Apply rector fixes to inc/Action


# fd853d4a 01-Jun-2023 fiwswe <53953985+fiwswe@users.noreply.github.com>

Corrected logic error


# eea5d349 31-May-2023 fiwswe <53953985+fiwswe@users.noreply.github.com>

Better fix

This is more concise and it also fixes a similar case in a different line.
`empty($userinfo['mail'])`correctly deals with:
- `$userinfo === false` => `true`
- `!array_key_exists('mail'

Better fix

This is more concise and it also fixes a similar case in a different line.
`empty($userinfo['mail'])`correctly deals with:
- `$userinfo === false` => `true`
- `!array_key_exists('mail', $userinfo)` => `true`
- `!isset($userinfo['mail'])` => `true`
- `$userinfo['mail'] === ''` => `true`

show more ...


# e6af5171 31-May-2023 fiwswe <53953985+fiwswe@users.noreply.github.com>

Fix #3982


# 79a2d784 05-Jan-2022 Gerrit Uitslag <klapinklapin@gmail.com>

import classes, replace dbglog, simplify, remove unused statements, and other warnings from IntelliJ

update phpdocs,
rename dokuwiki/Ui/Draft to PageDraft


# a838eeeb 07-Jul-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

Ui\UserResendPwd class replaces html_resendpwd()


# 2401f18d 30-Oct-2019 Syntaxseed <825423+syntaxseed@users.noreply.github.com>

Fix curly brace syntax. PHP 7.3 deprecations in inc/ directory.


# e1d9dcc8 15-Jun-2018 Andreas Gohr <andi@splitbrain.org>

First go at moving the plugin classes into their own namespace


# 4347c5bb 25-Apr-2018 Andreas Gohr <gohr@cosmocode.de>

add user interface back to resendpwd action. fixes #2349


# b2c9cd19 12-Apr-2018 Andreas Gohr <gohr@cosmocode.de>

renamed ActionRouter::checkPermissions to checkPreconditions

As discussed in #1933


# d5d08c05 27-Aug-2017 Andreas Gohr <andi@splitbrain.org>

fixed some style errors found by scrutinizer


# 480336a3 31-Mar-2017 Andreas Gohr <andi@splitbrain.org>

no longer rely on actionOk when checking if actions are disabled

loadAction() and checkAction() are now public and could be used within
actionOK(). However some weird circular references prevent tha

no longer rely on actionOk when checking if actions are disabled

loadAction() and checkAction() are now public and could be used within
actionOK(). However some weird circular references prevent that. In
addition, actionOK is also used to check for things that aren't Actions
(yet) like 'rss' and 'top'.

show more ...


# ec701221 31-Mar-2017 Andreas Gohr <andi@splitbrain.org>

explicitly declare method visibility


# ab583a1b 11-Feb-2017 Andreas Gohr <andi@splitbrain.org>

more doc block fixes


# f21dad39 11-Feb-2017 Andreas Gohr <andi@splitbrain.org>

all actions should have a class now

Lots of FIXMEs and the routing isn't integrated, yet