Page MenuHomeDevCentral

Allow to set a wiki in read-only mode
ClosedPublic

Authored by dereckson on Sun, Oct 12, 14:11.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Oct 30, 12:48
Unknown Object (File)
Tue, Oct 28, 06:09
Unknown Object (File)
Tue, Oct 28, 06:09
Unknown Object (File)
Tue, Oct 28, 06:09
Unknown Object (File)
Tue, Oct 28, 05:17
Unknown Object (File)
Tue, Oct 28, 03:38
Unknown Object (File)
Tue, Oct 28, 00:26
Unknown Object (File)
Mon, Oct 27, 19:37
Subscribers
None

Diff Detail

Repository
rSAASMW SaaS MediaWiki
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

dereckson created this revision.
dereckson added inline comments.
config/CommonSettings.php
93

Actually, we receive the array as defined in Settings.php

The method need to return an array of the settings for all wikis.

For example for URL:

Array
(
    [wgArticlePath] => Array
        (
            [default] => /wiki/$1
            [nasqueron_wiki] => /$1
            [arsmagica] => /$1
            [inidal_wiki] => /$1
        )

    [wgScriptPath] => Array
        (
            [default] => /w
            [nasqueron_wiki] => 
            [arsmagica] => 
            [inidal_wiki] => 
        )

)

Alternatively, fixGroupPermissions-like logic can be used here to avoid redefine default cache values.

This revision is now accepted and ready to land.Sun, Oct 12, 14:42
This revision was automatically updated to reflect the committed changes.