Ticket #93 (assigned defect)

Opened 3 years ago

Last modified 3 years ago

Plugin Breaks for Registered users

Reported by: Zxaos Assigned to: gudlyf (accepted)
Priority: normal Component: authimage
Severity: normal Keywords: captcha comment user registered
Cc:

Description

The captcha image doesn't display for logged in users. This causes them to be unable to post comments, as the wp-comments-post.php file dies when there isn't a code entered.

Suggested fix: Change

// AuthImage
if ( !checkAICode($comment_code) )
        die( __('Error: please enter the valid authorization code.') );

to

// AuthImage
if ( !$user_ID){
if ( !checkAICode($comment_code) )
        die( __('Error: please enter the valid authorization code.') );
}

Change History

03/05/05 13:43:04 changed by gudlyf

  • status changed from new to assigned.