opera possible fix for labelTest

This commit is contained in:
Andrew Dolgov 2006-08-20 06:48:17 +01:00
parent 825882d6c1
commit 37897616ff
2 changed files with 3 additions and 3 deletions

View File

@ -2281,7 +2281,7 @@
print "<div align='right'>";
print "<input type=\"submit\" onclick=\"labelTest()\" value=\"Test\">
print "<input type=\"submit\" onclick=\"return labelTest()\" value=\"Test\">
";
print "<input type=\"submit\"

View File

@ -734,12 +734,12 @@ function labelEditSave() {
if (sql_exp.length == 0) {
alert("SQL Expression cannot be blank.");
return;
return false;
}
if (description.length == 0) {
alert("Caption field cannot be blank.");
return;
return false;
}
closeInfoBox();