Merge branch 'ent-4300-Desaparecen-margenes-al-borrar-un-tag-management' into 'develop'

Added margin - #4300

See merge request artica/pandorafms!2657
This commit is contained in:
Daniel Rodriguez 2019-08-16 10:00:18 +02:00
commit 2a59a69f02
1 changed files with 7 additions and 0 deletions

View File

@ -31,6 +31,10 @@ $delete = (int) get_parameter('delete_tag', 0);
$tag_name = (string) get_parameter('tag_name', '');
$tab = (string) get_parameter('tab', 'list');
if ($delete != 0 && is_metaconsole()) {
open_meta_frame();
}
// Metaconsole nodes
$servers = false;
if (is_metaconsole()) {
@ -316,6 +320,9 @@ echo '<table border=0 cellpadding=0 cellspacing=0 width=100%>';
echo '</tr>';
echo '</table>';
if ($delete != 0 && is_metaconsole()) {
close_meta_frame();
}
// ~ enterprise_hook('close_meta_frame');
?>