* 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:
Tobi Schäfer 2008-12-14 12:50:52 +00:00
parent b5f3128757
commit 31251b6809
4 changed files with 9 additions and 10 deletions

View file

@ -327,7 +327,7 @@ Story.prototype.link_macro = function(param, action, text) {
Story.prototype.summary_macro = function(param) {
param.limit || (param.limit = 15);
var keys, summary;
if (arguments > 1) {
if (arguments.length > 1) {
res.push();
var content;
for (var i=1; i<arguments.length; i+=1) {