From 9bed71edb440762ce2462c4fccbe4f9e318faddf Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Tue, 13 Jan 2015 19:05:15 +0000 Subject: [PATCH] Fixed no userlist tags in editor tables. Fixes #394. --- resources/report/html/loot-plugin-editor.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/report/html/loot-plugin-editor.html b/resources/report/html/loot-plugin-editor.html index bef8c6d4..0636fe0a 100644 --- a/resources/report/html/loot-plugin-editor.html +++ b/resources/report/html/loot-plugin-editor.html @@ -498,7 +498,7 @@ loot-editor-close } if (tempData.userlist && tempData.userlist.tag) { tempData.userlist.tag.forEach(function(tag) { - var tagData = tempData.convTagObj(tag); + var tagData = Plugin.prototype.convTagObj(tag); tables[j].addRow(tagData); }, tempData); }