| 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 ...
|
| 03ae5b30 | 20-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.
show more ...
|
| 39ecc3af | 02-Jan-2022 |
Viktor Horváth <horvath.viktor@forrastrend.hu> |
translation update |
| 2cd6cc0a | 02-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
move resolvers into File namespace |
| ee78287d | 02-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
added autoplural tests for PageResolver |
| 093aec3d | 02-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
added pageresolver tests for tilde+startpage behaviour |
| 8e7694e0 | 02-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
authPDO: extend mysql test to ensure multiple groups are read
I noticed that all our tests basically only ever used one group per user. This makes sure multiple groups work as intended. |
| 830c02df | 01-Jan-2022 |
Schplurtz le Déboulonné <Schplurtz@laposte.net> |
update DokuWiki install URL |
| a07fd9f8 | 01-Jan-2022 |
Schplurtz le Déboulonné <Schplurtz@laposte.net> |
update smtp plugin URL |
| a7b2005a | 01-Jan-2022 |
Schplurtz le Déboulonné <Schplurtz@laposte.net> |
update flashplayer URL |
| bf8f8509 | 01-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
guard against unset parameters
Many string function will throw a deprecation warning in PHP 8.1 when null is passed. This adds a few guards in some of our methods (not all, yet) |
| f7711f2b | 01-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
always use the same htmlspecialchars setup
defaults for htmlspecialchars change in PHP 8.1
All calls should always use our hsc() method to ensure comparability (especially when testing) |
| 7aee97ee | 01-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
test on PHP 8.1 |
| f89f8c79 | 31-Dec-2021 |
Mark Prins <mprins@users.sf.net> |
translation update |
| bc63eda6 | 28-Dec-2021 |
Schplurtz le Déboulonné <schplurtz@laposte.net> |
translation update |
| d8ab8746 | 26-Dec-2021 |
Andreas Gohr <andi@splitbrain.org> |
Revert "Merge pull request #3039 from takuy/video-attributes"
This reverts commit 408d79f78505248f9ccb44bd2561cedc250ce5a1, reversing changes made to b7c67f83bd81eff3186e4ebd2d9e86cd2c32468d. |
| e36579e9 | 26-Dec-2021 |
Andreas Gohr <andi@splitbrain.org> |
Revert "fixed video attribute handling in php8"
This reverts commit f5cdab8ec90af0cde0c0e32209470cfa820b8ab5. |
| c48d6608 | 26-Dec-2021 |
Andreas Gohr <andi@splitbrain.org> |
Revert "more php8 fixes for the video attributes"
This reverts commit 89e046c85b43365a46ce9f137a1b843d3ef6813b. |
| a58fcbbc | 26-Dec-2021 |
Andreas Gohr <andi@splitbrain.org> |
guard against unsert user name. fixes #3455 |
| 4511ba41 | 26-Dec-2021 |
Andreas Gohr <andi@splitbrain.org> |
remove remaining X-UA-Compatible headers. fixes #3434 |
| 89e046c8 | 20-Dec-2021 |
Andreas Gohr <andi@splitbrain.org> |
more php8 fixes for the video attributes
I defaulted back to null instead of an empty array. |
| f5cdab8e | 20-Dec-2021 |
Andreas Gohr <andi@splitbrain.org> |
fixed video attribute handling in php8 |
| 1ef67323 | 17-Dec-2021 |
Andreas Gohr <andi@splitbrain.org> |
fix test for draft file |
| 24201594 | 17-Dec-2021 |
Andreas Gohr <andi@splitbrain.org> |
fix security problems in draft handling. fixes #3565 |
| 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 ...
|