fix javascript error: "parseint not defined"

This commit is contained in:
gbateson
2007-08-01 05:26:09 +00:00
parent aafc01514e
commit 62eefc5487
+1 -1
View File
@@ -150,7 +150,7 @@ function deletecheck(p, v, x) {
}
// confirm deletion
var n = navigator;
if (x || (n.appName=='Netscape' && parseint(n.appVersion)==2)) {
if (x || (n.appName=='Netscape' && parseInt(n.appVersion)==2)) {
r = confirm(p);
if (r) {
f.del.value = v;