function DoSaveComment() { $this->post['name'] = FSS_Input::getString('name', ''); $this->post['commentid'] = FSS_Input::getInt('commentid', 0); $this->post['email'] = FSS_Input::getEMail('email', ''); $this->post['website'] = FSS_Input::getURL('website', ''); $this->post['body'] = FSS_Input::getString('body', ''); $db = JFactory::getDBO(); $custom = FSSCF::Comm_StoreFields($this->customfields); $custom = serialize($custom); $qry = "UPDATE {$this->table} SET name = '" . FSSJ3Helper::getEscaped($db, $this->post['name']) . "', email = '" . FSSJ3Helper::getEscaped($db, $this->post['email']) . "', "; $qry .= "website = '" . FSSJ3Helper::getEscaped($db, $this->post['website']) . "', body = '" . FSSJ3Helper::getEscaped($db, $this->post['body']) . "', "; $qry .= "custom = '" . FSSJ3Helper::getEscaped($db, $custom) . "' WHERE id = " . FSSJ3Helper::getEscaped($db, $this->post['commentid']); $db->SetQuery($qry); $db->Query(); $this->DoShowComment(); exit; }
function Unreg_Passlist() { $email = FSS_Input::getEMail('email'); if ($email == "") { $email = FSS_Input::getEMail('reference'); } $tickets = new SupportTickets(); $tickets->limitstart = 0; $tickets->limit = 500; $tickets->loadTicketsByQuery(array("t.email = '{$email}'"), "lastupdate DESC"); if ($tickets->ticket_count > 0) { FSS_EMail::User_Unreg_Passwords($tickets->tickets); $link = FSSRoute::_("index.php?option=com_fss&view=ticket", false); JFactory::getApplication()->redirect($link, JText::sprintf("A_LIST_OF_YOUR_TICKETS_AND_PASSWORDS_HAS_BEEN_SENT_TO_YOU", $email)); } else { $link = FSSRoute::_("index.php?option=com_fss&view=ticket", false); JFactory::getApplication()->redirect($link, JText::sprintf("UNABLE_TO_FIND_ANY_TICKETS_FOR_EMAIL", $email)); } }
/** * Updates email for ticket */ function email() { if (!$this->view->can_ChangeUser()) { exit; } $ticketid = FSS_Input::getInt('ticketid'); $email = trim(FSS_Input::getEMail('email')); if ($ticketid < 1) { exit; } if ($email == "") { exit; } $ticket = new SupportTicket(); if (!$ticket->Load($ticketid)) { exit; } if ($ticket->email == "") { exit; } $ticket->updateUnregEMail($email); echo $email; exit; }