accounting fixes

This commit is contained in:
SJ 2013-03-06 20:11:03 +01:00
parent 411e203735
commit 18a0b39f3d
5 changed files with 50 additions and 2 deletions

View File

@ -377,5 +377,17 @@ $_['text_accounting'] = 'Archive Accounting';
$_['text_accounting_email'] = 'By-Email Accounting'; $_['text_accounting_email'] = 'By-Email Accounting';
$_['text_accounting_domain'] = 'By-Domain Accounting'; $_['text_accounting_domain'] = 'By-Domain Accounting';
$_['text_options'] = 'Options';
$_['text_spam_flag'] = 'Message Flagged as SPAM';
$_['text_attachment_flag'] = 'Message has Attachment';
$_['text_notes_flag'] = 'Message has Notes';
$_['text_tag_flag'] = 'Message is Tagged';
$_['text_verified_flag'] = 'Message is Verified';
$_['text_unverified_flag'] = 'Message Failed Verification';
$_['text_bulk_download'] = 'Bulk Download Selected Emails';
$_['text_clear'] = 'Clear';
$_['text_select_letter'] = 'Select Addresses by Letter';
$_['text_working'] = 'Working...';
?> ?>

View File

@ -378,4 +378,16 @@ $_['text_accounting'] = 'Arch
$_['text_accounting_email'] = 'Email szerint'; $_['text_accounting_email'] = 'Email szerint';
$_['text_accounting_domain'] = 'Domain szerint'; $_['text_accounting_domain'] = 'Domain szerint';
$_['text_options'] = 'Opciók';
$_['text_spam_flag'] = 'SPAM levél';
$_['text_attachment_flag'] = 'Melléklet';
$_['text_notes_flag'] = 'Megjegyzés';
$_['text_tag_flag'] = 'Címke';
$_['text_verified_flag'] = 'Ellenőrzött';
$_['text_unverified_flag'] = 'Módosított levél';
$_['text_bulk_download'] = 'Kiválasztott levelek letöltése';
$_['text_clear'] = 'Törlés';
$_['text_select_letter'] = 'Cím kiválasztása betű szerint';
$_['text_working'] = 'Keresés...';
?> ?>

View File

@ -378,4 +378,16 @@ $_['text_accounting'] = 'Archívum statisztika';
$_['text_accounting_email'] = 'Email szerint'; $_['text_accounting_email'] = 'Email szerint';
$_['text_accounting_domain'] = 'Domain szerint'; $_['text_accounting_domain'] = 'Domain szerint';
$_['text_options'] = 'Opciók';
$_['text_spam_flag'] = 'SPAM levél';
$_['text_attachment_flag'] = 'Melléklet';
$_['text_notes_flag'] = 'Megjegyzés';
$_['text_tag_flag'] = 'Címke';
$_['text_verified_flag'] = 'Ellenőrzött';
$_['text_unverified_flag'] = 'Módosított levél';
$_['text_bulk_download'] = 'Kiválasztott levelek letöltése';
$_['text_clear'] = 'Törlés';
$_['text_select_letter'] = 'Cím kiválasztása betű szerint';
$_['text_working'] = 'Keresés...';
?> ?>

View File

@ -369,7 +369,7 @@ $_['text_average_messages_day'] = 'Average Messages per Day';
$_['text_average_message_size'] = 'Average Message + Metadata + Index Size'; $_['text_average_message_size'] = 'Average Message + Metadata + Index Size';
$_['text_average_size_day'] = 'Average Size per Day'; $_['text_average_size_day'] = 'Average Size per Day';
$_['text_partition_full'] = 'Partition Projected to be Full in'; $_['text_partition_full'] = 'Partition Projected to be Full in';
$_['text_usage_trend'] = 'Useage Trend'; $_['text_usage_trend'] = 'Usage Trend';
$_['text_usage_increasing'] = 'Increasing'; $_['text_usage_increasing'] = 'Increasing';
$_['text_usage_decreasing'] = 'Decreasing'; $_['text_usage_decreasing'] = 'Decreasing';
$_['text_usage_neutral'] = 'Neutral'; $_['text_usage_neutral'] = 'Neutral';
@ -377,4 +377,16 @@ $_['text_accounting'] = 'Archive Accounting';
$_['text_accounting_email'] = 'By-Email Accounting'; $_['text_accounting_email'] = 'By-Email Accounting';
$_['text_accounting_domain'] = 'By-Domain Accounting'; $_['text_accounting_domain'] = 'By-Domain Accounting';
$_['text_options'] = 'Options';
$_['text_spam_flag'] = 'Message Flagged as SPAM';
$_['text_attachment_flag'] = 'Message has Attachment';
$_['text_notes_flag'] = 'Message has Notes';
$_['text_tag_flag'] = 'Message is Tagged';
$_['text_verified_flag'] = 'Message is Verified';
$_['text_unverified_flag'] = 'Message Failed Verification';
$_['text_bulk_download'] = 'Bulk Download Selected Emails';
$_['text_clear'] = 'Clear';
$_['text_select_letter'] = 'Select Addresses by Letter';
$_['text_working'] = 'Working...';
?> ?>

View File

@ -193,7 +193,7 @@ class ModelAccountingAccounting extends Model
$return = $this->__getAcceptedDomains(); $return = $this->__getAcceptedDomains();
}elseif(Registry::get('auditor_user') == 1) { }elseif(Registry::get('auditor_user') == 1) {
array_push($return,$_SESSION['domain']); array_push($return,$_SESSION['domain']);
foreach ($return as $d) { foreach ($_SESSION['auditdomains'] as $d) {
array_push($return,$d); array_push($return,$d);
} }
} }