| 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 ...  | 
| 95775ac7 | 22-Nov-2020 | Christoph Ziehr <christoph@christoph-ziehr.de> | Update Loader.php
 The config options are read in the order plugin-standard-values -> template-standard-values -> dokuwiki.php -> local.php -> local.protected.php into DokuWiki.
 But when entering th
 Update Loader.php
 The config options are read in the order plugin-standard-values -> template-standard-values -> dokuwiki.php -> local.php -> local.protected.php into DokuWiki.
 But when entering the configuration manger, they options are displayed in the order dokuwiki.php -> plugin-standard-values -> template-standard-values -> local.php -> local.protected.php
 
 This patch fixes the issue, so that the right values are displayed if there are no configs set in local.php or local.protected.php
 
 See also https://forum.dokuwiki.org/d/18489-issues-with-modifying-confdokuwikiphp for further information.
 
 This is a second version of this change, because on the first try, there was unnoticed php-error.
 show more ...  |