confirm.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:3k
源码类别:

电子政务应用

开发平台:

Java

  1. <?php
  2. // +-------------------------------------------------------------+
  3. // | DeskPRO v [2.0.1 Production]
  4. // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
  5. // | Supplied by WTN-WDYL
  6. // | Nullified by WTN-WDYL
  7. // | Distribution via WebForum, ForumRU and associated file dumps
  8. // +-------------------------------------------------------------+
  9. // | DESKPRO IS NOT FREE SOFTWARE
  10. // +-------------------------------------------------------------+
  11. // | License ID : Full Enterprise License =) ...
  12. // | License Owner : WTN-WDYL Team
  13. // +-------------------------------------------------------------+
  14. // | $RCSfile: confirm.php,v $
  15. // | $Date: 2004/02/11 20:32:12 $
  16. // | $Revision: 1.23 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - User validation handler
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL & ~E_NOTICE);
  22. require_once('./global.php');
  23. //Nullify WTN-WDYL Team
  24. $user_details = $db->query_return("
  25. SELECT * FROM user 
  26. WHERE username = '" . mysql_escape_string($_REQUEST['username']) . "'
  27. AND validate_key = '" . mysql_escape_string($_REQUEST['key']) . "'
  28. AND awaiting_validation = 1
  29. ");
  30. if ($db->num_rows() > 0) {
  31. $db->query("
  32. UPDATE user 
  33. SET awaiting_validation = 0 
  34. WHERE username = '" . mysql_escape_string($_REQUEST['username']) . "'
  35. AND validate_key = '" . mysql_escape_string($_REQUEST['key']) . "'
  36. ");
  37. // update session
  38. $session = update_session('user', $user_details[id]);
  39. // so the email goes through
  40. unset($user_details['awaiting_validation']);
  41. // email the user
  42. $user_details = update_user_details($user_details);
  43. eval(makeemaileval('message', 'BODY_register_confirmed', $subject));
  44. dp_mail($user_details[email], $subject, $message);
  45. // we need to now process the user's tickets if they are not requiring tech validation as well
  46. if ($user['awaiting_manual_validation'] != 1) {
  47. new_db_class(2);
  48. $db->query("
  49. SELECT ticket.*, ticket_message.message, ticket_cat.name AS category_name, ticket_pri.name AS priority_name
  50. FROM ticket 
  51. LEFT JOIN ticket_message ON (ticket.id = ticket_message.ticketid)
  52. LEFT JOIN ticket_cat ON (ticket_cat.id = ticket.category)
  53.             LEFT JOIN ticket_pri ON (ticket_pri.id = ticket.priority)
  54. WHERE ticket.userid = '" . intval($user_details[id]) . "'
  55. AND (nodisplay = 2 OR nodisplay = 3)
  56. GROUP BY ticket.id
  57. ");
  58. while ($ticket = $db->row_array()) {
  59. // update ticket's display propery
  60. $db2->query("UPDATE ticket SET nodisplay = 0 WHERE id = '$ticket[id]'");
  61. // notify techs
  62. notify_technicians('new', $ticket, $user_details, $ticket[message]);
  63. }
  64. }
  65. jump("index.php", "redirect_registered");
  66. } else {
  67. error("error_no_registration");
  68. }