antville/code/Site/edit.hac

24 lines
632 B
Text
Raw Normal View History

checkIfLoggedIn(this.href(req.action));
2001-10-07 19:31:19 +00:00
var deny = this.isEditDenied(session.user,req.data.memberlevel);
2001-09-05 21:54:06 +00:00
if (deny) {
2002-12-01 19:26:40 +00:00
res.message = getMessage("error",deny);
res.redirect(this.href());
2001-09-05 21:54:06 +00:00
}
2001-06-18 08:57:33 +00:00
2001-09-05 21:54:06 +00:00
if (req.data.submit == "cancel" || req.data.cancel)
2001-06-18 08:57:33 +00:00
res.redirect(this.href());
else if (req.data.submit == "save" || req.data.save) {
var result = this.evalPreferences(req.data,session.user);
res.message = result.message;
if (!result.error)
res.redirect(this.href());
}
2001-06-18 08:57:33 +00:00
2002-05-15 23:24:11 +00:00
res.data.action = this.href(req.action);
2002-05-17 19:56:17 +00:00
res.data.title = "Preferences";
2001-09-05 21:54:06 +00:00
res.data.body = this.renderSkinAsString("edit");
this.renderSkin("page");