From cfc847557cbb1c69d244407f012176136abd02db Mon Sep 17 00:00:00 2001 From: Till Brehm <tbrehm@ispconfig.org> Date: Thu, 28 Jul 2016 16:29:04 +0200 Subject: [PATCH] Fixed #4055 can't add/delete Addon Template --- interface/web/client/client_edit.php | 4 ++-- interface/web/client/reseller_edit.php | 4 ++-- interface/web/themes/default/assets/javascripts/ispconfig.js | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/interface/web/client/client_edit.php b/interface/web/client/client_edit.php index c3cc7f170d..ac7f4c6fce 100644 --- a/interface/web/client/client_edit.php +++ b/interface/web/client/client_edit.php @@ -149,7 +149,7 @@ class page_action extends tform_actions { if (trim($item['client_template_id']) != ''){ if ($text != '') $text .= ''; $text .= '<li rel="' . $item['assigned_template_id'] . '">' . $tpl[$item['client_template_id']]; - $text .= '<a href="#" class="button icons16 icoDelete"></a>'; + $text .= ' <a href="#" class="btn btn-danger btn-xs"><span class="glyphicon glyphicon-remove-circle" aria-hidden="true"></a>'; $tmp = new stdClass(); $tmp->id = $item['assigned_template_id']; $tmp->data = ''; @@ -173,7 +173,7 @@ class page_action extends tform_actions { foreach($tplAdd as $item){ if (trim($item) != ''){ if ($text != '') $text .= ''; - $text .= '<li>' . $tpl[$item]. '<a href="#" class="button icons16 icoDelete"></a></li>'; + $text .= '<li>' . $tpl[$item]. ' <a href="#" class="btn btn-danger btn-xs"><span class="glyphicon glyphicon-remove-circle" aria-hidden="true"></a></li>'; } } } diff --git a/interface/web/client/reseller_edit.php b/interface/web/client/reseller_edit.php index fff4202064..8ab091ef4d 100644 --- a/interface/web/client/reseller_edit.php +++ b/interface/web/client/reseller_edit.php @@ -143,7 +143,7 @@ class page_action extends tform_actions { if (trim($item['client_template_id']) != ''){ if ($text != '') $text .= ''; $text .= '<li rel="' . $item['assigned_template_id'] . '">' . $tpl[$item['client_template_id']]; - $text .= '<a href="#" class="button icons16 icoDelete"></a>'; + $text .= ' <a href="#" class="btn btn-danger btn-xs"><span class="glyphicon glyphicon-remove-circle" aria-hidden="true"></a>'; $tmp = new stdClass(); $tmp->id = $item['assigned_template_id']; $tmp->data = ''; @@ -167,7 +167,7 @@ class page_action extends tform_actions { foreach($tplAdd as $item){ if (trim($item) != ''){ if ($text != '') $text .= ''; - $text .= '<li>' . $tpl[$item]. '<a href="#" class="button icons16 icoDelete"></a></li>'; + $text .= '<li>' . $tpl[$item]. ' <a href="#" class="btn btn-danger btn-xs"><span class="glyphicon glyphicon-remove-circle" aria-hidden="true"></a></li>'; } } } diff --git a/interface/web/themes/default/assets/javascripts/ispconfig.js b/interface/web/themes/default/assets/javascripts/ispconfig.js index cfd15c89af..e4722ba8c5 100644 --- a/interface/web/themes/default/assets/javascripts/ispconfig.js +++ b/interface/web/themes/default/assets/javascripts/ispconfig.js @@ -502,12 +502,12 @@ var ISPConfig = { if(addTplId > 0) { var newVal = tpl_add.split('/'); ISPConfig.new_tpl_add_id += 1; - var delbtn = $('<a href="#"></a>').attr('class', 'button icons16 icoDelete').click(function(e) { + var delbtn = $(' <a href="#"><span class="glyphicon glyphicon-remove-circle" aria-hidden="true"></span></a>').attr('class', 'btn btn-danger btn-xs').click(function(e) { e.preventDefault(); ISPConfig.delAdditionalTemplate($(this).parent().attr('rel')); }); newVal[newVal.length] = 'n' + ISPConfig.new_tpl_add_id + ':' + addTplId; - $('<li>' + addTplText + '</li>').attr('rel', 'n' + new_tpl_add_id).append(delbtn).appendTo('#template_additional_list ul'); + $('<li>' + addTplText + '</li>').attr('rel', 'n' + ISPConfig.new_tpl_add_id).append(delbtn).appendTo('#template_additional_list ul'); $('#template_additional').val(newVal.join('/')); alert('additional template ' + addTplText + ' added to customer'); } else { -- GitLab