1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * This script shows system specification details.
- *
- * @copyright © 1999-2007 The SquirrelMail Project Team
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @version $Id$
- * @package plugins
- * @subpackage bug_report
- */
- /**
- * Include the SquirrelMail initialization file.
- */
- require('../../include/init.php');
- /** load plugin functions */
- include_once(SM_PATH.'plugins/bug_report/functions.php');
- /** is bug_report plugin disabled or called by wrong user */
- if (! is_plugin_enabled('bug_report') || ! bug_report_check_user()) {
- error_box(_("Plugin is disabled."));
- $oTemplate->display('footer.tpl');
- exit();
- }
- ?>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
- <html>
- <body>
- <pre>
- <?php
- include_once(SM_PATH . 'plugins/bug_report/system_specs.php');
- global $body;
- echo $body;
- ?>
- </pre>
- </body>
- </html>
|