Replacing tabs with spaces
[squirrelmail.git] / plugins / bug_report / show_system_specs.php
CommitLineData
595848f9 1<?php
2
3/**
4 * This shows system specification details.
5 *
6c84ba1e 6 * Copyright (c) 1999-2005 The SquirrelMail development team
595848f9 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 *
3b43404b 11 * @version $Id$
12 * @package plugins
13 * @subpackage bug_report
595848f9 14 */
15
3b43404b 16/**
17 * @ignore
18 */
595848f9 19define('SM_PATH','../../');
20include_once(SM_PATH . 'include/validate.php');
21
22
23?>
24<html>
25<body>
26<pre>
27
28<?php
29
30include_once(SM_PATH . 'plugins/bug_report/system_specs.php');
31global $body;
32echo $body;
33
34?>
35</pre>
36</body>
91e0dccc 37</html>