| 3c4b22e8 | 22-May-2021 |
alexdraconian <78018187+alexdraconian@users.noreply.github.com> |
Linkwiz update
Linkwiz Searches title if useheading option is 1 or content |
| 44398ba2 | 15-May-2021 |
Schplurtz le Déboulonné <schplurtz@laposte.net> |
translation update |
| 8d10861f | 11-May-2021 |
SergeyB <brutspark@gmail.com> |
translation update |
| 629a763d | 09-May-2021 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
remove MEDIA_DIFF event handling
MEDIA_DIFF event is not documented in devel:events_list and not used in any plugins. |
| 6cf7b139 | 06-May-2021 |
Andreas Gohr <andi@splitbrain.org> |
auth_ismanager: fix group check on PHP8
casting and array access specifity seem to differ on PHP8, breaking the fix in 1525c2281e6bc28f12ce8a59976e68e5a0e788fa |
| 49ab0c93 | 07-Apr-2021 |
Eren <bosshyapma@protonmail.com> |
translation update |
| 8c6be208 | 05-Apr-2021 |
Andreas Gohr <andi@splitbrain.org> |
replace deprecated function calls
Replaces the use of resolve_pageid() and resolve_mediaid() with the proper class invocations |
| 5c844bb3 | 05-Apr-2021 |
Andreas Gohr <andi@splitbrain.org> |
fix exists check in deprecated resolve_mediaid
This was copy'n'pasted from resolve_pageid. To correctly handle the date_at parameter a media_exists() function had to be introduced. |
| 248d652b | 01-Apr-2021 |
Gerrit Uitslag <klapinklapin@gmail.com> |
exclude ns in pagelook ups
Enables excluding namespaces in the quick search of the searchform https://github.com/Klap-in/dokuwiki-plugin-searchform/issues/7 |
| a332d288 | 31-Mar-2021 |
Thien Hau <thienhau.9a14@gmail.com> |
translation update |
| 1525c228 | 28-Mar-2021 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Simplify code for checking user groups |
| de1dc35b | 27-Mar-2021 |
Nicolas Friedli <nicolas@theologique.ch> |
Obsolete attribute
According the W3 HTML validator: Warning: The charset attribute on the script element is obsolete. |
| 8d7a31bc | 26-Mar-2021 |
Markus Glaser <glaser@hallowelt.com> |
translation update |
| 4f582736 | 20-Mar-2021 |
Guillaume Turri <guillaume.turri@gmail.com> |
Add tests on sectionID and fixes #3436
This commit fixes a bug on sectionID which could lead to having duplicated id.
Note that this commit changes the API a bit $check used to be a key-value array
Add tests on sectionID and fixes #3436
This commit fixes a bug on sectionID which could lead to having duplicated id.
Note that this commit changes the API a bit $check used to be a key-value array (with key=the origin id, and value=the number of time this id has been generated) and is now just an array of string. That's because the previous structure couldn't work.
As far as Dokuwiki sources are concerned, this change should have no impact because: - most call to sectionID are done with $check=false (and the behavior in this case isn't changed - only Doku_Renderer->_headerToLink passes an actual array to this method. But this array is initialized empty, it is only filled and read by sectionID itself. (this Doku_Renderer->headers array is protected but the classes which extends it aren't referring this array).
It could still break usages of pluging that would call sectionID and rely on the format of this array. But even if this commits kept $check as an array<string, bool> (for instance setting the values to 1) the semantic wouldn't be the same.
To put it in a nutshell: - this change of API has 0 impact on the core of Dokuwiki - there is no evidence that it would impact other code - there doesn't seem to be a clean way to avoid this change
This commit fixes #3436
show more ...
|
| 3078c453 | 19-Mar-2021 |
Olivier Humbert <trebmuh@tuxfamily.org> |
translation update |
| 72a969d4 | 18-Mar-2021 |
Olivier Humbert <trebmuh@tuxfamily.org> |
translation update |
| a1ef6903 | 18-Mar-2021 |
Nicolas Friedli <nicolas@theologique.ch> |
translation update |
| 056469f9 | 12-Mar-2021 |
Gustavo B. Schenkel <gustavo.schenkel@gmail.com> |
translation update |
| 3e555995 | 24-Feb-2021 |
MaWi <drmaxxis@gmail.com> |
translation update |
| b7fa23a3 | 23-Feb-2021 |
Nikita <obraztsov568@gmail.com> |
translation update |
| f7acdb5e | 16-Feb-2021 |
Andreas Gohr <andi@splitbrain.org> |
fix method handling for RPC_CALL_ADD
This event seems not to be used by any plugin, which explains why this bug hasn't surfaced yet. Access is always checked against a full method name in the form o
fix method handling for RPC_CALL_ADD
This event seems not to be used by any plugin, which explains why this bug hasn't surfaced yet. Access is always checked against a full method name in the form of plugin.<pluginname>.<method> Such a full method was not passed when using an event as described in the documentation.
show more ...
|
| 01c53a65 | 16-Feb-2021 |
Andreas Gohr <andi@splitbrain.org> |
destroy the JPEGMeta object after use
On windows systems a file can not be deleted while processes still have a handle on them. JPEGMeta seems not to close its file handle correctly. Usually thats n
destroy the JPEGMeta object after use
On windows systems a file can not be deleted while processes still have a handle on them. JPEGMeta seems not to close its file handle correctly. Usually thats not a problem in short lived processes where everything is garbage collected at the end, however within a test request the object may live on a little longer causing problems.
show more ...
|
| d51dacaa | 13-Feb-2021 |
Dario <darioriso@virgilio.it> |
translation update |
| 66b64c2a | 06-Feb-2021 |
Damien Regad <dregad@mantisbt.org> |
Address Scrutinizer inspection failure
The variable ``$port`` seems only to be defined at a later point. As such the call to ``isset()`` seems to always evaluate to ``false``. |
| 63f13cad | 06-Feb-2021 |
Damien Regad <dregad@mantisbt.org> |
Fixed typos |