even more fixes for the bundled extension list

This commit is contained in:
Andreas Gohr 2014-01-05 20:01:45 +01:00
parent 947a047235
commit 220ab8d2df
1 changed files with 4 additions and 4 deletions

View File

@ -94,10 +94,10 @@ class helper_plugin_extension_extension extends DokuWiki_Plugin {
public function isBundled() {
if (!empty($this->remoteInfo['bundled'])) return $this->remoteInfo['bundled'];
return in_array($this->base,
array('acl', 'info', 'extension', 'testing', 'revert', 'popularity',
'config', 'plugin', 'safefnrecode', 'authplain', 'testing',
'template:dokuwiki'
)
array(
'authad', 'authldap', 'authmysql', 'authpgsql', 'authplain', 'acl', 'info', 'extension',
'revert', 'popularity', 'config', 'plugin', 'safefnrecode', 'testing', 'template:dokuwiki'
)
);
}