Changeset 5196

Show
Ignore:
Timestamp:
02/02/08 19:59:17 (3 years ago)
Author:
coolengineer
Message:
  • #785
  • OpenID 플러그인을 껐을때 댓글이 남겨지지 않는 버그 수정
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/script/common2.js

    r5160 r5196  
    988988    if (!oForm) 
    989989        return false; 
    990     if( oForm.comment_type[0].checked && oForm.comment_type[0].value == 'openid' ) { 
     990    if( oForm.comment_type != undefined &&  
     991        oForm.comment_type[0].checked && oForm.comment_type[0].value == 'openid' ) { 
    991992        return addCommentWithOpenIDAuth(oForm, entryId); 
    992993    }