Skip to content
Snippets Groups Projects
Commit c6f9df2a authored by Andreas Gohr's avatar Andreas Gohr
Browse files

minor fix for obfuscate patch

darcs-hash:20050902203054-7ad00-76384ca4515031c63766eb2e54f3fd3c88ae08b9.gz
parent 94de3b7a
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ class DokuWiki_Admin_Plugin {
// use these to avoid having to duplicate code to produce links in line with the installation configuration
function plugin_email($email, $name='', $class='', $more='') {
if (!$email) return $name;
$email = $this->obfuscate($email);
$email = obfuscate($email);
if (!$name) $name = $email;
$class = "class='".($class ? $class : 'mail')."'";
return "<a href='mailto:$email' $class title='$email' $more>$name</a>";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment