* Fixed notifcation skins in HopObject to prevent ugly "null" output; from now on only the ID of the created/modified object is displayed.
* Fixed bug in Story.summary_macro() preventing additional arguments from being used to render metadata content * Added root.sites to _parent mapping in Site.properties
This commit is contained in:
parent
b5f3128757
commit
31251b6809
4 changed files with 9 additions and 10 deletions
|
@ -248,8 +248,7 @@ Image.prototype.tags_macro = function() {
|
|||
}
|
||||
|
||||
Image.prototype.contentLength_macro = function() {
|
||||
res.write((this.contentLength / 1024).format("###,###") + " KB");
|
||||
return;
|
||||
return res.write((this.contentLength / 1024).format("###,###") + " KB");
|
||||
}
|
||||
|
||||
Image.prototype.url_macro = function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue