* Added some missing and fixed some incorrect res.data.title properties

* Moved code removing the current layout *after* the one backing it up
This commit is contained in:
Tobi Schäfer 2009-10-27 22:58:07 +00:00
parent b34390b9a9
commit 323254321d
4 changed files with 12 additions and 9 deletions

View file

@ -60,7 +60,7 @@ Skins.prototype.main_action = function() {
if (!this._parent) {
res.redirect(res.handlers.layout.skins.href());
}
res.data.title = gettext("Custom skins of {0}", this._parent.title);
res.data.title = gettext("Basic skins of {0}", res.handlers.site.title);
res.data.list = this.renderSkinAsString("$Skins#basic");
res.data.body = this.renderSkinAsString("$Skins#main");
res.handlers.site.renderSkin("Site#page");
@ -149,7 +149,7 @@ Skins.prototype.create_action = function() {
}
Skins.prototype.modified_action = function() {
res.data.title = gettext("Modified skins of {0}", this._parent.title);
res.data.title = gettext("Modified skins of {0}", res.handlers.site.title);
res.push();
this.modified.forEach(function() {
this.renderSkin("$Skin#listItem");