fix bundled extension list

This commit is contained in:
Satoshi Sahara 2020-02-16 11:35:36 +09:00
parent cd80a50546
commit 1d4a5a70d1
2 changed files with 5 additions and 4 deletions

View File

@ -126,9 +126,10 @@ class helper_plugin_extension_extension extends DokuWiki_Plugin
return in_array(
$this->id,
array(
'authad', 'authldap', 'authmysql', 'authpdo', 'authpgsql', 'authplain',
'acl', 'info', 'extension', 'revert', 'popularity', 'config',
'safefnrecode', 'styling', 'testing', 'template:dokuwiki'
'authad', 'authldap', 'authpdo', 'authplain',
'acl', 'config', 'extension', 'info', 'popularity', 'revert',
'safefnrecode', 'styling', 'testing', 'usermanager',
'template:dokuwiki',
)
);
}

View File

@ -165,7 +165,7 @@ class helper_plugin_extension_list extends DokuWiki_Plugin
if ($linktype == 'extern' && $conf['relnofollow']) {
$param['rel'] = implode(' ', [$param['rel'], 'ugc nofollow']);
}
$html .= ' <a '. buildAttributes($param, true).'>'.
$html = ' <a '. buildAttributes($param, true).'>'.
$this->getLang('homepage_link').'</a>';
return $html;
}