added display of plugin versions to bug report.
[squirrelmail.git] / plugins / bug_report / show_system_specs.php
1 <?php
2
3 /**
4 * This shows system specification details.
5 *
6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This is a standard SquirrelMail 1.2 API for plugins.
10 *
11 * @version $Id$
12 * @package plugins
13 * @subpackage bug_report
14 */
15
16 /**
17 * @ignore
18 */
19 define('SM_PATH','../../');
20 include_once(SM_PATH . 'include/validate.php');
21
22 ?>
23 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
24 <html>
25 <body>
26 <pre>
27 <?php
28
29 include_once(SM_PATH . 'plugins/bug_report/system_specs.php');
30 global $body;
31 echo $body;
32
33 ?>
34 </pre>
35 </body>
36 </html>