Merge pull request #703 from ryanblenis/plugin-admin

Plugin Admin Links Broken
This commit is contained in:
Ylian Saint-Hilaire
2019-12-03 21:16:54 -08:00
committed by GitHub
2 changed files with 11 additions and 7 deletions

View File

@@ -9539,7 +9539,7 @@
installedPluginList.forEach(function(p){
var cant_action = [];
if (p.hasAdminPanel == true && p.status) {
p.nameHtml = '<a onclick="return goPlugin(' + p.shortName + ', ' + p.name + ');">' + p.name + '</a>';
p.nameHtml = '<a onclick="return goPlugin(\'' + p.shortName + '\', \'' + p.name.replace(/'/g, "\\'") + '\');">' + p.name + '</a>';
} else {
p.nameHtml = p.name;
}