diff --git a/data/web/js/site/mailbox.js b/data/web/js/site/mailbox.js index 13a8398b..0c8c0aa0 100644 --- a/data/web/js/site/mailbox.js +++ b/data/web/js/site/mailbox.js @@ -262,9 +262,6 @@ jQuery(function($){ item.max_quota_for_mbox = humanFileSize(item.max_quota_for_mbox); item.chkbox = ''; item.action = '
'; - if (item.backupmx_int == 1) { - item.domain_name = ' ' + item.domain_name; - } if (role == "admin") { item.action += ' ' + lang.edit + '' + ' ' + lang.remove + ''; @@ -273,6 +270,9 @@ jQuery(function($){ item.action += ' ' + lang.edit + ''; } item.action += ' DNS
'; + if (item.backupmx_int == 1) { + item.domain_name = ' ' + item.domain_name; + } }); } }),