We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f73edfb commit 64338b4Copy full SHA for 64338b4
application/core/MY_Controller.php
@@ -28,11 +28,6 @@ public function __construct() {
28
*/
29
protected function render_view( $view, $vars = array() ) {
30
$vars['content'] = $this->get_component_view( $view, $vars );
31
- // Pass variables to React Views using associative arrays to $vars['react_vars']
32
- // like $vars['react_vars'] = array( 'message' => 'Welcome to CodeIgniter React ');
33
- if( ! isset( $vars['react_vars'] ) ) {
34
- $vars['react_vars'] = [];
35
- }
36
$this->load->view( $this->theme_base . 'base', $vars, FALSE );
37
}
38
0 commit comments