History log of /dokuwiki/inc/Action/Denied.php (Results 1 – 14 of 14)
Revision Date Author Comments
# 26dfc232 31-Aug-2023 Andreas Gohr <andi@splitbrain.org>

Rector to rename print to echo calls


# 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


# 43e49620 08-Jan-2022 Anna Dabrowska <dabrowska@cosmocode.de>

Simplify event in denied action

Since there is no data manipulation, only allow suppresing the login form


# 540b38e2 05-Jan-2022 Anna Dabrowska <dabrowska@cosmocode.de>

Add event to denied action

Let plugins modify the text displayed on the denied page


# ecad51dd 17-Dec-2021 Andreas Gohr <andi@splitbrain.org>

fix handling of loading auth backend

When a non existing auth backend was configured, the action router ran
into an infinie loop exception. The reason was that the denied action
required a configure

fix handling of loading auth backend

When a non existing auth backend was configured, the action router ran
into an infinie loop exception. The reason was that the denied action
required a configured auth system, but denying access should always
work.

Interestingly the problem did not occur when the auth backend signalled
a failure to load. This was because the auth backend was not properly
deinitialized. This is now done.

To aid debugging similar problems, fatal errors are now logged through
the logging mechanism in the action router

show more ...


# a215faf2 04-Sep-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

re-declare deprecated functions for backward compatibility

`dbg_deprecated()` is called in `html_diff_head()`, `html_diff_navigation()`, `html_diff_navigationlink()`, and following functions:

* `h

re-declare deprecated functions for backward compatibility

`dbg_deprecated()` is called in `html_diff_head()`, `html_diff_navigation()`, `html_diff_navigationlink()`, and following functions:

* `html_denied()` is not used any plugins, but added fallback just in case.
* `html_locked()` is used by one third-party plugin (AjaxEdit), fallback should be added.
* `html_insert_softbreaks()` is used by one third-party plugin (TOS, terms of service), fallback should be added.

show more ...


# 83f8872c 13-Aug-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

use $INPUT instead of $_SERVER


# f0049a83 15-Jul-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

Remove Ui\{Denide, Locked} class

They are not UI components. We should show error message in Action\{Denide, Locked}::tplContent() methods.


# 2f5c77bd 09-Jul-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

Ui\Denid class replaces html_denid()


# 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


# 64ab5140 10-Feb-2017 Andreas Gohr <andi@splitbrain.org>

start of a refactoring the action routing

This is neither complete nor working, yet