I'm spending way too much time on it.
For some reason I was scanning through his code and found this, from the theme's comments.php. Look at the class for the first list item. An email address is inserted in a conditional statement. (I changed it to email@domain.com) If I'm right, this is as bad as it gets and it's harmless -- it just means that if someone with his email address makes a comment, the CSS will be different. This was a for-real email address associated with the theme author's for-real and above-the-board domain. He probably hacked the template for a personal blog, and forgot to take this part out when releasing the theme.
However, think of what could be accomplished with something as simple as an alternative bit of CSS. If comment_author_email is bigonesxxx@oops.com, use this css class that has a background image you really don't want to see...
Something to think about.
<!-- You can start editing here. -->
<?php if ($comments) : ?>
<h2 id="comments"><?php comments_number('No Replies', 'One Reply', '% Replies' );?></h2>
<ol class="commentlist">
<?php foreach ($comments as $comment) : ?>
<?php if (get_comment_type() == "comment"){ ?>
<li class="<?php if ($comment->comment_author_email == "email@domain.com") echo 'author'; else echo $oddcomment; ?> item" id="comment-<?php comment_ID() ?>">
<div class="commentMeta">
<span class="author"><?php comment_author_link() ?></span>
<span class="date"><a href="#comment-<?php comment_ID() ?>" title="Comment Permalink"><?php comment_date('M jS Y') ?></a></span>
<span class="moderate"><?php edit_comment_link('Moderate','',''); ?></span>
</div>
<?php if(function_exists('get_avatar')) { echo get_avatar($comment, '40'); } ?>
<div class="commentText">
<?php if ($comment->comment_approved == '0') : ?>
<strong>Your comment is awaiting moderation.</strong>
<?php endif; ?>
<?php comment_text() ?>
</div>
<div class="clearfix"></div>
</li>
<?php } ?>
<?php endforeach; /* end for each comment */ ?>
</ol>
<?php else : // this is displayed if there are no comments so far ?>
<?php if ('open' == $post->comment_status) : ?>
<h2 id="comments"><?php comments_number('No Replies', 'One Reply', '% Replies' );?></h2>
<p>Feel free to leave a reply using the form below!</p>
<?php else : // comments are closed ?>
<p class="nocomments">Comments are closed.</p>
<?php endif; ?>
<?php endif; ?>






