show_system_specs.php 561 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * This shows system specification details.
  4. *
  5. * Copyright (c) 1999-2004 The SquirrelMail development team
  6. * Licensed under the GNU GPL. For full terms see the file COPYING.
  7. *
  8. * This is a standard Squirrelmail-1.2 API for plugins.
  9. *
  10. * @version $Id$
  11. * @package plugins
  12. * @subpackage bug_report
  13. */
  14. /**
  15. * @ignore
  16. */
  17. define('SM_PATH','../../');
  18. include_once(SM_PATH . 'include/validate.php');
  19. ?>
  20. <html>
  21. <body>
  22. <pre>
  23. <?php
  24. include_once(SM_PATH . 'plugins/bug_report/system_specs.php');
  25. global $body;
  26. echo $body;
  27. ?>
  28. </pre>
  29. </body>
  30. </html>