removed use of viewData object as passed by controller thru routerview to component -- component fetches data instead

This commit is contained in:
adisposkofh
2026-04-16 15:49:16 +02:00
parent 354e1ccdf4
commit 2aecc6e0f2
36 changed files with 680 additions and 638 deletions
+1 -6
View File
@@ -26,11 +26,6 @@ class MyLv extends Auth_Controller
*/
public function index()
{
$viewData = array(
);
$this->load->view('CisRouterView/CisRouterView.php', ['viewData' => $viewData, 'route' => 'MyLv']);
$this->load->view('CisRouterView/CisRouterView.php', ['route' => 'MyLv']);
}
}