diff options
-rw-r--r-- | lib/plugins/extension/helper/extension.php | 7 | ||||
-rw-r--r-- | lib/plugins/extension/helper/list.php | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/lib/plugins/extension/helper/extension.php b/lib/plugins/extension/helper/extension.php index 99e9245e8..47fe87373 100644 --- a/lib/plugins/extension/helper/extension.php +++ b/lib/plugins/extension/helper/extension.php @@ -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', ) ); } diff --git a/lib/plugins/extension/helper/list.php b/lib/plugins/extension/helper/list.php index 64ddb9468..fc8dfec3e 100644 --- a/lib/plugins/extension/helper/list.php +++ b/lib/plugins/extension/helper/list.php @@ -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; } |