#180 1개 이상을 설문응답으로 선택한 경우 해당 수보다 작더라도 설문이 되도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2731 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-10-11 01:20:16 +00:00
parent 94359156c8
commit 3b5a5a2c11

View file

@ -27,7 +27,7 @@ function doPoll(fo_obj) {
for(var poll_srl_index in checkcount) {
var count = checkcount[poll_srl_index];
var items = item[poll_srl_index];
if(count > items.length) {
if(items.length < 1 || count < items.length) {
alert(poll_alert_lang);
return false;
}