Hello,
I have joomla 1.5 et try to update 1.2 release of ChronoComments. Since I have update it, I can't submit comment or reponse comment. That seems not be the same problem of Hollysmith (Can't submit comment) who have template problem.
I have error with hideemail who is undefined (see with ie navigator, no error message with Mozilla and same problem).
![Can't submit Comment since 1.2 release [solved] image 1](http://nsm01.casimages.com/img/2009/06/15//090615114102709173875905.jpg)
I have uncheck email in configuration, and i have same problem.
![Can't submit Comment since 1.2 release [solved] image 2](http://nsm01.casimages.com/img/2009/06/15//090615114102709173875906.jpg)
This bug is referenced, have you solution ?
I have joomla 1.5 et try to update 1.2 release of ChronoComments. Since I have update it, I can't submit comment or reponse comment. That seems not be the same problem of Hollysmith (Can't submit comment) who have template problem.
I have error with hideemail who is undefined (see with ie navigator, no error message with Mozilla and same problem).
![Can't submit Comment since 1.2 release [solved] image 1](http://nsm01.casimages.com/img/2009/06/15//090615114102709173875905.jpg)
I have uncheck email in configuration, and i have same problem.
![Can't submit Comment since 1.2 release [solved] image 2](http://nsm01.casimages.com/img/2009/06/15//090615114102709173875906.jpg)
This bug is referenced, have you solution ?
Solution on edit Script.js :
1. hideemail
replace by
2. hideurl
replace by
I don't know all consequence of this solution. In my case I can now post Comment Response or Comment.
1. hideemail
}else if((!hideemail)&&($chk($('ccemail_'+submitid)))&&(($('ccemail_'+submitid).value.trim() == '')||(!(emailFilter.test($('ccemail_'+submitid).value.trim()))))){
replace by
}else if(($chk($('ccemail_'+submitid)))&&(($('ccemail_'+submitid).value.trim() == '')||(!(emailFilter.test($('ccemail_'+submitid).value.trim()))))){
2. hideurl
}else if((!hideurl)&&($chk($('ccurl_'+submitid)))&&(!$('ccurl_'+submitid).value.trim().test("http://"))){
//if(!$('ccurl_'+submitid).value.trim().test("http://")){
alert(URL_HTTP);
$('ccurl_'+submitid).focus();
//}
replace by
}else if(($chk($('ccurl_'+submitid)))&&(!$('ccurl_'+submitid).value.trim().test("http://"))){
//if(!$('ccurl_'+submitid).value.trim().test("http://")){
alert(URL_HTTP);
$('ccurl_'+submitid).focus();
//}
I don't know all consequence of this solution. In my case I can now post Comment Response or Comment.
This topic is locked and no more replies can be posted.