| #
75578ae6 |
| 27-Nov-2024 |
Andreas Gohr <andi@splitbrain.org> |
Preventing auto-filling of passwords in config #4362
We previously had set autocomplete="off" on password fields, but browsers seem to ignore that now.
MDN suggests [1] to use autocomplete="new-pas
Preventing auto-filling of passwords in config #4362
We previously had set autocomplete="off" on password fields, but browsers seem to ignore that now.
MDN suggests [1] to use autocomplete="new-password", so that's what's used now. In addition autocomplete="off" is set on the form as a whole.
Will that fix the issue once and for all? Doubtful:
> This attribute is a hint to browsers; some may not comply with it.
[1] https://developer.mozilla.org/en-US/docs/Web/Security/Practical_implementation_guides/Turning_off_form_autocompletion
show more ...
|
| #
d4f83172 |
| 31-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
code style: line breaks
|
| #
177d6836 |
| 31-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
coding style: control flow whitespaces
|
| #
d868eb89 |
| 30-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
codestyle adjustments: function declaration braces/spaces
|
| #
8c7c53b0 |
| 30-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
codestyle adjustments: class declaration braces
|
| #
8553d24d |
| 30-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
Apply rector renames
|
| #
bf9be0e3 |
| 30-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
Apply remaining rector fixes to lib
|
| #
467c1427 |
| 29-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
Apply rector fixes to config plugin
|
| #
a6b97c7d |
| 19-Aug-2023 |
Gerrit Uitslag <klapinklapin@gmail.com> |
fix no error message was shown on input errors
|
| #
923e149a |
| 15-Feb-2019 |
Michael Große <mic.grosse@googlemail.com> |
Merge branch 'master' into psr2
|
| #
6dc1e56e |
| 29-Jan-2019 |
Simon DELAGE <sdelage@gmail.com> |
Added an ID to config manager form
Goal is to make it easy to create an alternate "save" button with a 'form' attribute pointing to that ID, be it in pagetools or anywhere else (related to https://g
Added an ID to config manager form
Goal is to make it easy to create an alternate "save" button with a 'form' attribute pointing to that ID, be it in pagetools or anywhere else (related to https://github.com/splitbrain/dokuwiki/issues/764)
show more ...
|
| #
2eb1177e |
| 09-Jan-2019 |
Phy <git@phy25.com> |
prefer array rather than string with the wl() parameter
|
| #
8e7e33dc |
| 07-Jan-2019 |
Phy <git@phy25.com> |
fix typo of extra bracket
|
| #
e9fede20 |
| 22-Oct-2018 |
Phy <git@phy25.com> |
unify send_redirect(wl()) parameters - always use absolute URL - use static string instead of array if no concat is required - use '&' instead of '&'
|
| #
f8dcd5b0 |
| 01-Jun-2018 |
Andreas Gohr <andi@splitbrain.org> |
do not initialize the configuration in constructor
The class gets instantiated for showing the admin menu. There's no need to always load the whole configuration there. It's only needed when the Con
do not initialize the configuration in constructor
The class gets instantiated for showing the admin menu. There's no need to always load the whole configuration there. It's only needed when the Config screen is actually shown. So loading it in handler() instead should be good enough.
show more ...
|
| #
e7296041 |
| 01-Jun-2018 |
Andreas Gohr <andi@splitbrain.org> |
make undefined settings output work again
|
| #
fbe5f617 |
| 01-Jun-2018 |
Andreas Gohr <andi@splitbrain.org> |
removed fixme that had been fixed
|
| #
d6fc72e1 |
| 25-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
fix language and TOC handling
|
| #
e98b5e44 |
| 18-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
sucess is green
|
| #
0a5b05eb |
| 18-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
Moved settings to their own namespace
|
| #
be1cc9ae |
| 18-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
replaced ptln() with echo
We used to use ptln to ensure the produced HTML source code is somewhat readable, but with modern HTML inspectors this is no longer necessary and makes the PHP source code
replaced ptln() with echo
We used to use ptln to ensure the produced HTML source code is somewhat readable, but with modern HTML inspectors this is no longer necessary and makes the PHP source code ugly.
show more ...
|
| #
a1ef8b4d |
| 12-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
PSR2 adjustments for admin class
|
| #
5c17d2d3 |
| 12-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
first go over the settings classes for PSR-2
|
| #
a017dff4 |
| 12-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
introduce getType for Settings
|
| #
5675a07c |
| 12-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
moved language loading to the loader
|