ae172803 | 21-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
readd language file
This file had been deleted because I didn't know how to properly remove the link in it. But looking a bit more at the original it seems that the link was never correct in the fir
readd language file
This file had been deleted because I didn't know how to properly remove the link in it. But looking a bit more at the original it seems that the link was never correct in the first place which explains why I had trouble with it.
I now completely removed it. Since I don't speak the language, the remaining sentence might be weird or miss a word. Native speakers like @qezwan or @Shvan-ali should have a look and maybe submit an update.
Readding this file should fix #3988 updating endlessly.
show more ...
|
a15f0555 | 21-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
fix off-by-one error
sexplode needs to return 8 not 7 entries for making 8364f07a11f076bb6973d0c434d189a7aa6c8c56 work correctly. |
8364f07a | 21-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
avoid warning in ChangeLogTrait on weird log lines |
0877de15 | 16-Aug-2023 |
Andreas Gohr <andi@splitbrain.org> |
do not display "show page" in pagetools if no read permission |
95465e17 | 10-Aug-2023 |
Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> |
Fixes PHP 8 warning when editing drafts on PHP 8
The following error is thrown on PHP 8.3 while attempt to edit a Draft:
Warning: Undefined array key "draft" in /home/robertinho/public_html/wiki/
Fixes PHP 8 warning when editing drafts on PHP 8
The following error is thrown on PHP 8.3 while attempt to edit a Draft:
Warning: Undefined array key "draft" in /home/robertinho/public_html/wiki/inc/Action/Draft.php on line 34
Warning: Cannot modify header information - headers already sent by (output started at /home/robertinho/public_html/wiki/inc/Action/Draft.php:34) in /home/robertinho/public_html/wiki/inc/actions.php on line 38
show more ...
|
bcf7417c | 26-Jul-2023 |
Rafael Fernandes <rafa.fernan10@gmail.com> |
translation update |
5e6b4925 | 26-Jul-2023 |
take <take@ruu.kr> |
translation update |
82442557 | 23-Jul-2023 |
Schplurtz le Déboulonné <schplurtz@laposte.net> |
translation update |
6ea803cc | 22-Jul-2023 |
alair <Mail@alair.top> |
translation update |
29d63aa5 | 17-Jul-2023 |
Andreas Gohr <andi@splitbrain.org> |
metadata: consider webp and svg for first images as well |
fa1a0dc6 | 10-Jul-2023 |
TB Maulana Aghni <tubagus.maulana@runsystem.id> |
Parserutils Warning |
dbcceefd | 06-Jul-2023 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Prevent double escaping of form labels
\dokuwiki\Form\Form::addLabelHTML() should not escape label content (again) |
300294b4 | 29-Jun-2023 |
KAWASHIMA,Y <darknmatta@gmail.com> |
translation update |
7c809c8e | 28-Jun-2023 |
Xrizzy <xrizzy@web.de> |
translation update |
5cefb623 | 22-Jun-2023 |
Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> |
Update media.php |
0743feea | 17-Jun-2023 |
Daniel Dias Rodrigues <danieldiasr@gmail.com> |
translation update |
8fae2e99 | 09-Jun-2023 |
Andreas Gohr <andi@splitbrain.org> |
Check method and content type in JSONRPC server
Addresses #3991 |
64259528 | 09-Jun-2023 |
Andreas Gohr <andi@splitbrain.org> |
removed outdated version check |
cc7691ad | 09-Jun-2023 |
Andreas Gohr <andi@splitbrain.org> |
enforce content type on XML-RPC. addresses #3991
This ensures only text/xml or application/xml content types are accepted when communicating with the XML-RPC API |
c49393f5 | 09-Jun-2023 |
Andreas Gohr <andi@splitbrain.org> |
increase required PHP version to 7.4 |
bf8392eb | 09-Jun-2023 |
Andreas Gohr <andi@splitbrain.org> |
use samesite=Lax cookie attribute #2849
Since this has been the default in Chrome for a while, no sideeffects are to be expected. |
fd853d4a | 01-Jun-2023 |
fiwswe <53953985+fiwswe@users.noreply.github.com> |
Corrected logic error |
ec2224d9 | 01-Jun-2023 |
Andreas Gohr <andi@splitbrain.org> |
language updates for #3010 addition to #3981 |
a4231b8c | 01-Jun-2023 |
fiwswe <53953985+fiwswe@users.noreply.github.com> |
Avoid warning in do=check for anonymous users
fixes #3984 |
eea5d349 | 31-May-2023 |
fiwswe <53953985+fiwswe@users.noreply.github.com> |
Better fix
This is more concise and it also fixes a similar case in a different line.
`empty($userinfo['mail'])`correctly deals with:
- `$userinfo === false` => `true`
- `!array_key_exists('mail'
Better fix
This is more concise and it also fixes a similar case in a different line.
`empty($userinfo['mail'])`correctly deals with:
- `$userinfo === false` => `true`
- `!array_key_exists('mail', $userinfo)` => `true`
- `!isset($userinfo['mail'])` => `true`
- `$userinfo['mail'] === ''` => `true`
show more ...
|