renaming function in order to remove phpdoc error
[squirrelmail.git] / plugins / bug_report / show_system_specs.php
CommitLineData
595848f9 1<?php
2
3/**
4 * This shows system specification details.
5 *
6 * Copyright (c) 1999-2004 The SquirrelMail development 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 * $Id$
12 */
13
14
15define('SM_PATH','../../');
16include_once(SM_PATH . 'include/validate.php');
17
18
19?>
20<html>
21<body>
22<pre>
23
24<?php
25
26include_once(SM_PATH . 'plugins/bug_report/system_specs.php');
27global $body;
28echo $body;
29
30?>
31</pre>
32</body>
33</html>