<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in dokuwiki</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>3e427828956691caaeb7030348434e4631461c99 - Translation update (sk)</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/#3e427828956691caaeb7030348434e4631461c99</link>
        <description>Translation update (sk)

            List of files:
            /dokuwiki/inc/lang/sk/lang.php/dokuwiki/lib/plugins/authad/lang/sk/settings.php/dokuwiki/lib/plugins/authldap/lang/sk/settings.php/dokuwiki/lib/plugins/config/lang/sk/lang.php/dokuwiki/lib/plugins/extension/lang/sk/lang.php/dokuwiki/lib/plugins/logviewer/lang/sk/intro.txt/dokuwiki/lib/plugins/logviewer/lang/sk/lang.php/dokuwiki/lib/plugins/logviewer/lang/sk/nolog.txt/dokuwiki/lib/plugins/usermanager/lang/sk/lang.php</description>
        <pubDate>Tue, 02 Jun 2026 17:00:00 +0000</pubDate>
        <dc:creator>Wizzard &lt;wizzardsk@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>54e76260c0b2582a4922e778f87e8202e3f14ec9 - chore: adjust overlong line</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/#54e76260c0b2582a4922e778f87e8202e3f14ec9</link>
        <description>chore: adjust overlong line

            List of files:
            /dokuwiki/inc/infoutils.php</description>
        <pubDate>Fri, 29 May 2026 13:00:00 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>1dbc46ac72720bdfa123c00b4e48c01647ee8fa7 - Translation update (ro)</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/#1dbc46ac72720bdfa123c00b4e48c01647ee8fa7</link>
        <description>Translation update (ro)

            List of files:
            /dokuwiki/inc/lang/ro/lang.php/dokuwiki/inc/lang/ro/locked.txt/dokuwiki/inc/lang/ro/mailtext.txt/dokuwiki/inc/lang/ro/newpage.txt/dokuwiki/inc/lang/ro/onceexisted.txt/dokuwiki/inc/lang/ro/password.txt/dokuwiki/inc/lang/ro/registermail.txt/dokuwiki/inc/lang/ro/resendpwd.txt/dokuwiki/inc/lang/ro/resetpwd.txt/dokuwiki/inc/lang/ro/subscr_digest.txt/dokuwiki/inc/lang/ro/subscr_list.txt/dokuwiki/inc/lang/ro/subscr_single.txt/dokuwiki/inc/lang/ro/uploadmail.txt/dokuwiki/lib/plugins/acl/lang/ro/help.txt/dokuwiki/lib/plugins/acl/lang/ro/lang.php/dokuwiki/lib/plugins/authad/lang/ro/lang.php/dokuwiki/lib/plugins/config/lang/ro/intro.txt/dokuwiki/lib/plugins/config/lang/ro/lang.php/dokuwiki/lib/plugins/popularity/lang/ro/intro.txt/dokuwiki/lib/plugins/revert/lang/ro/intro.txt/dokuwiki/lib/plugins/revert/lang/ro/lang.php/dokuwiki/lib/plugins/usermanager/lang/ro/delete.txt/dokuwiki/lib/plugins/usermanager/lang/ro/intro.txt/dokuwiki/lib/plugins/usermanager/lang/ro/lang.php</description>
        <pubDate>Wed, 27 May 2026 18:00:00 +0000</pubDate>
        <dc:creator>Tzipirigu &lt;tzipirigu.radu25683@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>08b5f5eb32076487415ffbda6e18ccd6ee8ae692 - fix(authad): avoid warning when initAdLdap is called before opts is populated</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/#08b5f5eb32076487415ffbda6e18ccd6ee8ae692</link>
        <description>fix(authad): avoid warning when initAdLdap is called before opts is populated$this-&gt;opts is initialized as an empty array, so the is_array() guard ininitAdLdap() passed even when no domain had been loaded yet, producing an&quot;Undefined array key &apos;domain&apos;&quot; warning on PHP 8 (e.g. from getUserCount()called by the Popularity admin page).Fixes #4501

            List of files:
            /dokuwiki/lib/plugins/authad/auth.php</description>
        <pubDate>Thu, 14 May 2026 20:00:00 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>a5debd11989e592856f864bfca820c4e918e8843 - remove valid_input_set(), inline the only remaining callers</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/#a5debd11989e592856f864bfca820c4e918e8843</link>
        <description>remove valid_input_set(), inline the only remaining callersThe Input::valid() method on $INPUT already provides the cleaner APIoriginally requested in #667. The last two callers in Subscribe.phpvalidated against a local $params array (not $_POST/$_GET) and needto throw a specific exception, so inline a small in_array + throw atthose call sites rather than carry the legacy helper.The class could probably be made cleaner but that&apos;s beyond the scope ofthis change.Closes #667

            List of files:
            /dokuwiki/inc/Action/Subscribe.php/dokuwiki/inc/common.php</description>
        <pubDate>Thu, 14 May 2026 20:00:00 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>36ba8eadc205a4e1af5099c74b747e2256faadd4 - test: add tests to catch #4637</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/#36ba8eadc205a4e1af5099c74b747e2256faadd4</link>
        <description>test: add tests to catch #4637Issue #4637 was fixed in 7686f2030b19f948d2e50df1613ef6592fa44b46 but Ididn&apos;t like that no test had caught the issue.This adds a specific test for the issue as a HandlerTest. Additionally asimple smoke test is added that renders the wiki:syntax page andinspects the created DOM. It&apos;s not comprehensive but might help flaggingsimilar issue in the future.

            List of files:
            /dokuwiki/_test/tests/Parsing/HandlerTest.php/dokuwiki/_test/tests/inc/parser/renderer_pipeline.test.php</description>
        <pubDate>Tue, 12 May 2026 18:00:00 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>8c651031df0d1d46ab9466269b61997c7b38480f - Update copyright year in README</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/#8c651031df0d1d46ab9466269b61997c7b38480f</link>
        <description>Update copyright year in README

            List of files:
            /dokuwiki/README</description>
        <pubDate>Wed, 13 May 2026 09:00:00 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
</channel>
</rss>
