Fix host info page

This commit is contained in:
Visman 2019-12-26 01:19:10 +07:00
parent 2b5a996578
commit c476b32080

View file

@ -26,10 +26,13 @@ class Host extends Admin
$host = @\gethostbyaddr($ip);
$this->nameTpl = 'message';
$this->titles = \ForkBB\__('Info');
$this->message = \ForkBB\__('Host info', $ip, $host, $this->c->Router->link('AdminUsersResult', ['data' => "ip:{$ip}"]));
$this->back = true;
$this->nameTpl = 'message';
$this->titles = \ForkBB\__('Info');
$this->back = true;
$this->fIswev = [
'i',
\ForkBB\__('Host info', $ip, $host, $this->c->Router->link('AdminUsersResult', ['data' => "ip:{$ip}"])),
];
return $this;
}