2002-01-22 19:38:34 +00:00
|
|
|
checkIfLoggedIn(this.href(req.action));
|
2001-10-07 19:31:19 +00:00
|
|
|
|
2003-01-02 19:05:03 +00:00
|
|
|
var deny = this.isDenied(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);
|
2002-06-26 16:11:53 +00:00
|
|
|
res.redirect(path.site.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());
|
2001-12-10 23:04:51 +00:00
|
|
|
else if (req.data.submit == "save" || req.data.save) {
|
2002-07-18 12:48:19 +00:00
|
|
|
// check if a url has been passed instead of a file upload. hw
|
|
|
|
if ((!req.data.rawimage || req.data.rawimage.contentLength == 0) && req.data.url)
|
|
|
|
req.data.rawimage = getURL(req.data.url);
|
2002-06-02 16:17:31 +00:00
|
|
|
var result = this.evalImg(req.data,session.user);
|
2001-12-10 23:04:51 +00:00
|
|
|
res.message = result.message;
|
|
|
|
if (!result.error)
|
|
|
|
res.redirect(this.href());
|
|
|
|
}
|
2001-06-18 08:57:33 +00:00
|
|
|
|
2002-05-15 23:12:41 +00:00
|
|
|
res.data.action = this.href(req.action);
|
|
|
|
|
2002-06-26 16:11:53 +00:00
|
|
|
res.data.title = path.site.title;
|
2001-09-05 21:54:06 +00:00
|
|
|
|
2001-12-10 23:04:51 +00:00
|
|
|
var newImg = new image();
|
2002-06-02 16:17:31 +00:00
|
|
|
res.data.body = newImg.renderSkinAsString("new");
|
|
|
|
|
2002-07-18 12:48:19 +00:00
|
|
|
path.site.renderSkin("page");
|