Added margin - #4300
This commit is contained in:
parent
5cecf1f899
commit
747e06c8b0
|
@ -31,6 +31,10 @@ $delete = (int) get_parameter('delete_tag', 0);
|
||||||
$tag_name = (string) get_parameter('tag_name', '');
|
$tag_name = (string) get_parameter('tag_name', '');
|
||||||
$tab = (string) get_parameter('tab', 'list');
|
$tab = (string) get_parameter('tab', 'list');
|
||||||
|
|
||||||
|
if ($delete != 0 && is_metaconsole()) {
|
||||||
|
open_meta_frame();
|
||||||
|
}
|
||||||
|
|
||||||
// Metaconsole nodes
|
// Metaconsole nodes
|
||||||
$servers = false;
|
$servers = false;
|
||||||
if (is_metaconsole()) {
|
if (is_metaconsole()) {
|
||||||
|
@ -316,6 +320,9 @@ echo '<table border=0 cellpadding=0 cellspacing=0 width=100%>';
|
||||||
echo '</tr>';
|
echo '</tr>';
|
||||||
echo '</table>';
|
echo '</table>';
|
||||||
|
|
||||||
|
if ($delete != 0 && is_metaconsole()) {
|
||||||
|
close_meta_frame();
|
||||||
|
}
|
||||||
|
|
||||||
// ~ enterprise_hook('close_meta_frame');
|
// ~ enterprise_hook('close_meta_frame');
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue