Comment System Replacement
-
One of the very last things I am looking into before I go and make my site public is the commenting system. Imagine my surprise when I go to test it out and find that if any of the info isn’t correct, wordpress spits out a die() with a line of text on a blank screen.
What the hell? The code:
if ( get_settings(‘require_name_email’) && !$user_ID ) {
if ( 6 > strlen($comment_author_email) || ” == $comment_author )
die( __(‘Error: please fill the required fields (name, email).’) );
elseif ( !is_email($comment_author_email))
die( __(‘Error: please enter a valid email address.’) );
}Is this for real!? I thought this must be a joke, but then I tried commenting on a few blogs people had posted in the Your WordPress section and, sure enough… am I alone in thinking this is rather shoddy?
I’m wondering if there are any wholesale replacements of the whole system, since this seems like bunk.
The topic ‘Comment System Replacement’ is closed to new replies.