You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
374 B

7 years ago
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. /**
  4. * Q&A 페이지
  5. */
  6. class Qna extends WB_Controller
  7. {
  8. function index($qna_idx="")
  9. {
  10. if(!$this->member->is_login())
  11. {
  12. alert_login();
  13. exit;
  14. }
  15. $this->theme = $this->site->get_layout();
  16. $this->view = "customer/qna/lists";
  17. }
  18. }