From 3ae2951e30130ed840b60c701e2c772db6918e74 Mon Sep 17 00:00:00 2001 From: Ryan Blenis Date: Tue, 3 Dec 2019 20:50:09 -0500 Subject: [PATCH] Fix plugin admin links not working, protect against potential apostrophes in plugin name --- views/default.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/default.handlebars b/views/default.handlebars index 66af23fd..5055cbe4 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -9539,7 +9539,7 @@ installedPluginList.forEach(function(p){ var cant_action = []; if (p.hasAdminPanel == true && p.status) { - p.nameHtml = '' + p.name + ''; + p.nameHtml = '' + p.name + ''; } else { p.nameHtml = p.name; }