Changeset 466 for trunk/modules/user_guide/controllers/user_guide.php
- Timestamp:
- 09/01/2007 05:04:16 PM (15 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/user_guide/controllers/user_guide.php
r464 r466 62 62 url::redirect($ajax_return); 63 63 64 $this->data['menu'] = $this->load->view('user_guide/menu', array('active_category' => $category, 'active_section' => $section)); 65 $this->data['content'] = $this->load->view($content)->render(FALSE, 'Markdown'); 64 $template = $this->load->view('user_guide/template'); 65 $template->menu = $this->load->view('user_guide/menu', array('active_category' => $category, 'active_section' => $section)); 66 $template->content = $this->load->view($content)->render(FALSE, 'Markdown'); 66 67 67 68 // Display output 68 $t his->load->view('user_guide/template', $this->data)->render(TRUE);69 $template->render(TRUE); 69 70 } 70 71 }
