new-installer: Make findExtensions() return a key-value array
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 6 Jul 2010 21:34:20 +0000 (21:34 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 6 Jul 2010 21:34:20 +0000 (21:34 +0000)
commit83ff1577b70b90bef3d50180f66310762d6fe985
treef9d8246857d583f5d51f18afa75b38d940fc91eb
parent18d45df0924031a79191bcc50ef173f90c14cd7d
new-installer: Make findExtensions() return a key-value array

Now we return e.g.:

    array( 'Cite', 'LiquidThreads' );

Instead return:

    array(
        'Cite' => null,
        'LiquidThreads' => $some_config
    );

Where $some_config is a yet-to-be determined configuration. It's
intended for e.g. sourcing SQL tables that the extension needs.
includes/installer/Installer.php
includes/installer/WebInstaller.php