History log of /dokuwiki/inc/ (Results 326 – 350 of 6433)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
ae17280321-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 ...

a15f055521-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.

8364f07a21-Aug-2023 Andreas Gohr <andi@splitbrain.org>

avoid warning in ChangeLogTrait on weird log lines

0877de1516-Aug-2023 Andreas Gohr <andi@splitbrain.org>

do not display "show page" in pagetools if no read permission

95465e1710-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 ...

bcf7417c26-Jul-2023 Rafael Fernandes <rafa.fernan10@gmail.com>

translation update

5e6b492526-Jul-2023 take <take@ruu.kr>

translation update

8244255723-Jul-2023 Schplurtz le Déboulonné <schplurtz@laposte.net>

translation update

6ea803cc22-Jul-2023 alair <Mail@alair.top>

translation update

29d63aa517-Jul-2023 Andreas Gohr <andi@splitbrain.org>

metadata: consider webp and svg for first images as well

fa1a0dc610-Jul-2023 TB Maulana Aghni <tubagus.maulana@runsystem.id>

Parserutils Warning

dbcceefd06-Jul-2023 Anna Dabrowska <dabrowska@cosmocode.de>

Prevent double escaping of form labels

\dokuwiki\Form\Form::addLabelHTML() should not escape label content (again)

300294b429-Jun-2023 KAWASHIMA,Y <darknmatta@gmail.com>

translation update

7c809c8e28-Jun-2023 Xrizzy <xrizzy@web.de>

translation update

5cefb62322-Jun-2023 Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com>

Update media.php

0743feea17-Jun-2023 Daniel Dias Rodrigues <danieldiasr@gmail.com>

translation update

8fae2e9909-Jun-2023 Andreas Gohr <andi@splitbrain.org>

Check method and content type in JSONRPC server

Addresses #3991

6425952809-Jun-2023 Andreas Gohr <andi@splitbrain.org>

removed outdated version check

cc7691ad09-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

c49393f509-Jun-2023 Andreas Gohr <andi@splitbrain.org>

increase required PHP version to 7.4

bf8392eb09-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.

fd853d4a01-Jun-2023 fiwswe <53953985+fiwswe@users.noreply.github.com>

Corrected logic error

ec2224d901-Jun-2023 Andreas Gohr <andi@splitbrain.org>

language updates for #3010 addition to #3981

a4231b8c01-Jun-2023 fiwswe <53953985+fiwswe@users.noreply.github.com>

Avoid warning in do=check for anonymous users

fixes #3984

eea5d34931-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 ...

1...<<11121314151617181920>>...258