Like a lot of services or software, when a new release comes out, I like to try out the new version. When I upgraded DasBlog to version 1.9, I found that it added "This comment has not been screened by an external service." to then end of all of my comments. This is something that I personally didn't like and/or want on my site.
I looked around the configuration page to see if there was a way to remove it with no luck. After that I Googled for a solution; no luck there either. So, not giving up, I viewed the source of one of my pages and found that this text was convienently wrapped with a <div class="commentSpamStateStyle"></div>. Knowing CSS, I just added the following style to my dasBlog.css file:
div.commentSpamStateStyle
{
display: block;
}
There, problem solved.