1
0

If there is a SourceLocation available the InfoDump will note it in the forum version.

This commit is contained in:
STRWarrior 2014-03-01 14:29:40 +01:00
parent ce07a22fe6
commit 6129b6edf1

View File

@ -578,6 +578,9 @@ local function DumpPluginInfoForum(a_PluginFolder, a_PluginInfo)
DumpAdditionalInfoForum(a_PluginInfo, f);
DumpCommandsForum(a_PluginInfo, f);
DumpPermissionsForum(a_PluginInfo, f);
if (a_PluginInfo.SourceLocation ~= nil) then
f:write("[b][color=blue]Source:[/color] [url=" .. a_PluginInfo.SourceLocation .. "]Link[/url][/b]");
end
f:close();
end