From 37cb70c1e90e9c9923d9a69abe59d8cade5a8392 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Tue, 23 Jun 2015 10:49:39 +0200 Subject: [PATCH] Fixed the title of macros in javascript. --- pandora_console/include/javascript/pandora_modules.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js index cdc99b61ae..3c5667d129 100644 --- a/pandora_console/include/javascript/pandora_modules.js +++ b/pandora_console/include/javascript/pandora_modules.js @@ -654,14 +654,6 @@ function add_macro_field(macro, row_model_id) { field_desc = field_desc.replace('macro_desc',macro_desc); field_desc = field_desc.replace('macro_help',macro_help); - // Get the cloned forced title id and replace for a uniq id - regex = /forced_title_(\w+)/; - var forced_title_id = field_desc.match(regex)[1]; - var uniq_id = 'id' + (new Date()).getTime(); - - field_desc = field_desc.replace(forced_title_id, uniq_id); - field_desc = field_desc.replace(forced_title_id, uniq_id); - $('#'+row_id).children().eq(0).html(field_desc); }