Ejemplo n.º 1
0
 function addEdit($lUserID)
 {
     //---------------------------------------------------------------------
     //
     //---------------------------------------------------------------------
     $this->load->helper('user/user_acct');
     commonAcctEdit($lUserID, true);
 }
Ejemplo n.º 2
0
 function edit($lUserID)
 {
     //---------------------------------------------------------------------
     //
     //---------------------------------------------------------------------
     global $glUserID;
     $lUserID = (int) $lUserID;
     // someone hacking the url?
     if ($lUserID != $glUserID) {
         $this->session->set_flashdata('error', '<b>ERROR:</b> User ID not valid!</font>');
         redirect_More();
     }
     $this->load->helper('user/user_acct');
     commonAcctEdit($lUserID, false);
 }