Skip to content

Commit

Permalink
controller/faq bug: $this->data to $data
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike committed Jun 10, 2013
1 parent 05c4f55 commit 5405815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/faq.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public function index()
'pag_segment' => 4
);

$this->data->faqs = $this->streams->entries->get_entries($params);
$data->faqs = $this->streams->entries->get_entries($params);

// Build the page
$this->template->title($this->module_details['name'])
->build('index', $this->data);
->build('index', $data);
}

}
Expand Down

0 comments on commit 5405815

Please sign in to comment.