| ba234b18 | 10-Jan-2019 |
Phy <git@phy25.com> |
css_compress: use placeholder to keep quoted strings, fixes #2517
The idea mainly comes from https://github.com/matthiasmullie/minify/blob/97f118c4c745c7c8e47207f2daf3bab13ca65404/src/Minify.php#L343 |
| a9bd2f2f | 10-Jan-2019 |
Phy <git@phy25.com> |
add quotes test for #2517 |
| 43f71e05 | 19-Oct-2019 |
sdavis80 <sddev@dvscat.com> |
updated inc/auth.php
Updated the auth_pwgen password generator order to letters + special character + number so that the password will not end with a comma, full stop or other special character.
Fo
updated inc/auth.php
Updated the auth_pwgen password generator order to letters + special character + number so that the password will not end with a comma, full stop or other special character.
For example bacdefgih.15 instead of bacdefgih15.
show more ...
|
| 2c849d6c | 17-Oct-2019 |
Mark Janssen <mpc.janssen@gmail.com> |
Fix #2883 |
| fe52a7ca | 17-Oct-2019 |
Mark Janssen <mpc.janssen@gmail.com> |
Add failing unit test for #2883 |
| 7ecc081f | 15-Oct-2019 |
Andreas Gohr <gohr@cosmocode.de> |
ACL Plugin: make item formatter public again
The formatter needs to be public to be called from html_buildlist() |
| 49bcbaee | 15-Oct-2019 |
Andreas Gohr <gohr@cosmocode.de> |
Do config backups with .php extension fixes #2446 |
| 0af8c6fb | 15-Oct-2019 |
Andreas Gohr <gohr@cosmocode.de> |
added group internet to html validity checks
Because we use an online validator |
| 4af692c2 | 15-Oct-2019 |
Andreas Gohr <gohr@cosmocode.de> |
Avoid flaky tests by waiting full seconds
The waitForTick() method tried to be clever and return early if a second had passed since the last call already. Unfortunatel this did not work reliably in
Avoid flaky tests by waiting full seconds
The waitForTick() method tried to be clever and return early if a second had passed since the last call already. Unfortunatel this did not work reliably in our tests and we often had failures on tests that required unique revision numbers.
Pull requests for a reliable version welcome. Until the we wait a second on each call.
show more ...
|
| d0c72da0 | 10-Oct-2019 |
Aleksandr Selivanov <alexgearbox@yandex.ru> |
translation update |
| 618a9504 | 08-Oct-2019 |
Bartek S <sadupl@gmail.com> |
translation update |
| 34ed9bc9 | 08-Oct-2019 |
Anonymous <anonymous@example.org> |
translation update |
| 410dd8d2 | 08-Oct-2019 |
Bartek S <sadupl@gmail.com> |
translation update |
| 13eec648 | 01-Oct-2019 |
Syntaxseed <825423+syntaxseed@users.noreply.github.com> |
Check for null JS object on form field. |
| a162d649 | 28-Sep-2019 |
Florian <florianmail55@gmail.com> |
translation update |
| 32168a78 | 27-Sep-2019 |
Guillaume Turri <guillaume.turri@gmail.com> |
Rename _acl_add to _acl_addOrUpdate
because that's what this method actually does now |
| 3f1e0037 | 27-Sep-2019 |
Guillaume Turri <guillaume.turri@gmail.com> |
Fix #1115
without this patch calling _acl_add may result in a corrupted acl.auth.php file. This is the case when we're adding a config for a user and a scope with an existing config.
The fix is jus
Fix #1115
without this patch calling _acl_add may result in a corrupted acl.auth.php file. This is the case when we're adding a config for a user and a scope with an existing config.
The fix is just to call the _acl_del method before perming the addition.
Note that this _acl_add method is currently called from two places: - from admin_plugin_acl.handle() which was explicitely calling _acl_del before - from remote_plugin_acl.addAcl, which can actually result in a corrupted file
show more ...
|
| 297c3d20 | 26-Sep-2019 |
Aleksandr Selivanov <alexgearbox@yandex.ru> |
translation update |
| 118b2568 | 24-Sep-2019 |
PaliPalo <palipalo@hotmail.fr> |
translation update |
| be3146e3 | 21-Sep-2019 |
Mario AlexandTeixeira dos Santos <masterofclan@gmail.com> |
translation update |
| b15f23f6 | 21-Sep-2019 |
Scott Marshall <esmarshall@esmarshall.com> |
Update config.class.php
Sort plugin list for display by Configuration Manager |
| f6e0950d | 14-Sep-2019 |
Aleksandr Selivanov <alexgearbox@yandex.ru> |
translation update |
| cf293cd5 | 14-Sep-2019 |
Aleksandr Selivanov <alexgearbox@yandex.ru> |
translation update |
| a672ef75 | 14-Sep-2019 |
Phy <git@phy25.com> |
use inline template instead of .dist file to populate users.auth.php
users.auth.php is the only file in DokuWiki that is generated by using existing .dist file, instead of inline templates in instal
use inline template instead of .dist file to populate users.auth.php
users.auth.php is the only file in DokuWiki that is generated by using existing .dist file, instead of inline templates in install.php. This may cause problem when install.php is being run to create animal wiki in farm mode, because in this case DOKU_CONF may have no files at all, so install cannot populate users.auth.php properly. This closes #2845, which may be a result of this behavior - without proper comments at the beginning of the file, once the last authplain user is removed (if users has other auth backend as a proxy of authplain), the whole file will get removed, which causes fatal error.
show more ...
|
| 88ca2487 | 13-Sep-2019 |
Phy <git@phy25.com> |
authpdo: fix _query return type issue per Scrutinizer inspection |