Make WordPress Core


Ignore:
Timestamp:
10/05/2003 09:06:11 PM (22 years ago)
Author:
mikelittle
Message:

Added call to antispambot round comment email.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/b2-include/b2template.functions.php

    r394 r413  
    12121212    global $comment;
    12131213    $url = trim(stripslashes($comment->comment_author_url));
    1214     $email = $comment->comment_author_email;
     1214    $email = stripslashes($comment->comment_author_email);
    12151215    $author = stripslashes($comment->comment_author);
    12161216
     
    12281228        echo $url;
    12291229    } else {
    1230         echo 'mailto:'.$email;
     1230        echo 'mailto:'.antispambot($email);
    12311231    }
    12321232    echo '" rel="external">' . $author . '</a>';
Note: See TracChangeset for help on using the changeset viewer.