From fcd7a77c44dfca9fba3b16eec1cedab68f9d4ee9 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Wed, 15 Jul 2020 11:01:34 +0200 Subject: [PATCH] Fixing none app static functions stopped being called relevant to commit 52eb5ca8e0471142d3f6297687df0b4da67b028a --- api/js/etemplate/et2_core_legacyJSFunctions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/etemplate/et2_core_legacyJSFunctions.js b/api/js/etemplate/et2_core_legacyJSFunctions.js index 79f6bbeb50..26ae8281c2 100644 --- a/api/js/etemplate/et2_core_legacyJSFunctions.js +++ b/api/js/etemplate/et2_core_legacyJSFunctions.js @@ -140,7 +140,7 @@ } } if (typeof parent[existing_func] === "function") { - parent[existing_func]; + return parent[existing_func]; } }