Changeset 486 for trunk/modules/user_guide/controllers/user_guide.php
- Timestamp:
- 09/03/2007 08:49:02 PM (15 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/user_guide/controllers/user_guide.php
r485 r486 41 41 $content = rtrim('user_guide/'.$locale.'content/'.$category.'/'.$section, '/'); 42 42 43 $template = $this->load->view('user_guide/'.$locale.'template');44 $template->menu = $this->load->view('user_guide/'.$locale.'menu', array('active_category' => $category, 'active_section' => $section));45 $template->content = $this->load->view($content)->render(FALSE, array($this, '_tags'));46 47 43 // Display output 48 $template->render(TRUE); 44 $this->load->view('user_guide/'.$locale.'template', array 45 ( 46 'active_category' => $category, 47 'active_section' => $section, 48 'content' => $this->load->view($content)->render(FALSE, array($this, '_tags')) 49 ))->render(TRUE); 49 50 } 50 51
