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

电子政务应用

开发平台:

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: ticketlog.php,v $
  15. // | $Date: 2004/02/10 01:34:31 $
  16. // | $Revision: 1.6 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - Ticket details and history viewer.
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL ^ E_NOTICE);
  22. // start file
  23. require("./../global.php");
  24. // globalise variables
  25. $global = array (
  26. array('id') 
  27. );
  28. rg($global);
  29. tech_nav('Tickets', 'View Ticket Log');
  30. if (!$id) {
  31. mistake("No ticket was specified");
  32. exit();
  33. }
  34. $relation = $db->query_return("SELECT * FROM ticket_merge WHERE old_id = '$id'");
  35. if ($relation['new_id']) {
  36. echo "Note: this ticket has been merged into <A HREF="ticketview.php?id=$relation[new_id]">Ticket #$relation[new_id]</A>.";
  37. }
  38. $log = generate_ticketlog($id);
  39. table_header('Ticket Log', '', '', '');
  40. table_content($cols, $log[0], '', '', '', $log[1]);
  41. table_footer();
  42. tech_footer();
  43. ?>