Fixed the country files update area which was broken due to the interface update

This commit is contained in:
Peter Goodhall
2019-05-25 17:59:19 +01:00
parent ad0bccbc50
commit 909ffe4459
3 changed files with 25 additions and 24 deletions

View File

@@ -11,9 +11,9 @@ class Update extends CI_Controller {
public function index()
{
$data['page_title'] = "Updates";
$this->load->view('layout/header', $data);
$this->load->view('interface_assets/header', $data);
$this->load->view('update/index');
$this->load->view('layout/footer');
$this->load->view('interface_assets/footer');
}