16 lines
436 B
Text
16 lines
436 B
Text
if (!this.weblog.isPublic())
|
|
res.redirect(this.weblog.members.href("login"));
|
|
|
|
this.filter();
|
|
|
|
res.skin = "main";
|
|
|
|
if (req.data.text && !this.isPostAllowed())
|
|
res.redirect(this.href());
|
|
else if (req.data.text)
|
|
this.addComment();
|
|
|
|
res.title = "Antville - " + this.weblog.title;
|
|
res.head = this.weblog.renderSkinAsString("style");
|
|
res.body = this.weblog.renderSkinAsString("header");
|
|
res.body += this.renderSkinAsString("main");
|