Untuk memperbaiki Error di atas maka :
- Buka application/third_party/MX/Loader.php
- Cari function public function view($view, $vars = array(), $return = FALSE) Cari… (Line 300)
return $this->_ci_load(array(‘_ci_view’ => $view, ‘_ci_vars’ => $this->_ci_object_to_array($vars), ‘_ci_return’ => $return));
Ganti dengan :
if (method_exists($this, ‘_ci_object_to_array’))
{
return $this->_ci_load(array(‘_ci_view’ => $view, ‘_ci_vars’ => $this->_ci_object_to_array($vars), ‘_ci_return’ => $return));
} else {
return $this->_ci_load(array(‘_ci_view’ => $view, ‘_ci_vars’ => $this->_ci_prepare_view_vars($vars), ‘_ci_return’ => $return));
}
Selesai…
Referensi : http://stackoverflow.com/questions/41557760/codeigniter-hmvc-object-to-array-error
Terima kasih.
SukaSuka