fix
This commit is contained in:
@@ -92,10 +92,13 @@ class Member extends Member_Controller {
|
||||
// echo "Yes i got to the controller";
|
||||
}
|
||||
|
||||
public function myprofile() {
|
||||
public function myprofile(){
|
||||
|
||||
$data = array();
|
||||
$this->renderMemberPages('view_myprofile', $data);
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function configure() {
|
||||
// echo 'yes'; view_mypage
|
||||
|
||||
@@ -131,29 +134,14 @@ class Member extends Member_Controller {
|
||||
|
||||
// exit();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
$this->configure();
|
||||
}
|
||||
|
||||
public function addNotecard() {
|
||||
$data = array();
|
||||
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
|
||||
$data['title'] = trim($this->input->post('title'));
|
||||
$data['detail'] = trim($this->input->post('detail'));
|
||||
$data['member_id'] = $_SESSION["member_id"];
|
||||
$data['session'] = $_SESSION["sessionid"];
|
||||
|
||||
|
||||
|
||||
|
||||
// exit();
|
||||
}
|
||||
|
||||
|
||||
// $this->renderMemberPages('view_mycalendar', $data);
|
||||
}
|
||||
|
||||
public function mycalendar() {
|
||||
$data = array();
|
||||
$this->renderMemberPages('view_mycalendar', $data);
|
||||
|
||||
Reference in New Issue
Block a user