Fix the update page error (missing proper template variable assignment)

This commit is contained in:
Alex Tselegidis 2022-10-03 17:04:51 +03:00
parent 0e2eced83c
commit e784df50e9
1 changed files with 3 additions and 1 deletions

View File

@ -71,6 +71,8 @@ class Update extends EA_Controller {
$view = ['success' => FALSE, 'exception' => $e->getMessage()]; $view = ['success' => FALSE, 'exception' => $e->getMessage()];
} }
$this->load->view('pages/update', $view); html_vars($view);
$this->load->view('pages/update');
} }
} }