I'm a newbie so i'm not sure of what i'm doing!! I have a site - dnn 4.5.5 - and when i go into the site settings to change, i get an error in the ScriptResource.axd (function below)
it throws an error that it's a bad date - i checked the value of "value" coming into the function and it's a valid date and time- the time is U.S. eastern (300) - but the cultureinfo is nothing - so i posted this in this forum as i believe there is something wrong in the localization?? - any thoughts out there? i also have another site that is 4.5.4 and i get the same thing - the site runs ok but i can't go into (or save) the site settings as i get this error....thanks for any help....
Date._parse = function Date$_parse(value, cultureInfo, args) {
var custom = false;
for (var i = 1, il = args.length; i < il; i++) {
var format = args[i];
if (format) {
custom = true;
var date = Date._parseExact(value, format, cultureInfo);
if (date) return date;
}
}
if (! custom) {
var formats = cultureInfo._getDateTimeformats();
for (var i = 0, il = formats.length; i < il; i++) {
var date = Date._parseExact(value, formats[i], cultureInfo);
if (date) return date;
}
}
throw Error.format(Sys.Res.formatBadDate);
}