resolving merge conflict with master

This commit is contained in:
Brian Talbot
2013-02-15 09:32:38 -05:00
52 changed files with 2612 additions and 787 deletions

View File

@@ -97,7 +97,7 @@ CMS.Views.Settings.Details = CMS.Views.ValidatingView.extend({
}
var newVal = new Date(date.getTime() + time * 1000);
if (!cacheModel.has(fieldName) || cacheModel.get(fieldName).getTime() !== newVal.getTime()) {
cacheModel.save(fieldName, newVal);
cacheModel.save(fieldName, newVal, { error: CMS.ServerError});
}
}
};