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.
19 lines
374 B
19 lines
374 B
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
/**
|
|
* Q&A 페이지
|
|
*/
|
|
class Qna extends WB_Controller
|
|
{
|
|
function index($qna_idx="")
|
|
{
|
|
if(!$this->member->is_login())
|
|
{
|
|
alert_login();
|
|
exit;
|
|
}
|
|
|
|
$this->theme = $this->site->get_layout();
|
|
$this->view = "customer/qna/lists";
|
|
}
|
|
}
|