mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-12 23:27:03 +02:00
i18n fixes
This commit is contained in:
@ -57,14 +57,14 @@ class ControllerAccountingAccounting extends Controller {
|
||||
// get type of accounting view
|
||||
if(@$this->request->get['view'] == "email") {
|
||||
$this->data['view'] = 'email';
|
||||
$this->data['viewname'] = "Emails";
|
||||
$this->data['viewname'] = $this->data['text_email'];
|
||||
$this->data['accounting'] = $counters->get_accounting('email',$this->data['search'], $this->data['page'], $this->data['page_len'], $this->data['sort'], $this->data['order']);
|
||||
$this->data['total_records'] = $counters->count_accounting('email',$this->data['search']);
|
||||
}
|
||||
|
||||
if(@$this->request->get['view'] == "domain") {
|
||||
$this->data['view'] = 'domain';
|
||||
$this->data['viewname'] = "Domains";
|
||||
$this->data['viewname'] = $this->data['text_domain'];
|
||||
$this->data['accounting'] = $counters->get_accounting('domain',$this->data['search'], $this->data['page'], $this->data['page_len'], $this->data['sort'], $this->data['order']);
|
||||
$this->data['total_records'] = $counters->count_accounting('domain',$this->data['search']);
|
||||
}
|
||||
|
Reference in New Issue
Block a user