switched doctype to standard compliance mode
[squirrelmail.git] / plugins / bug_report / show_system_specs.php
index 83e22b039b478c319ad534277746c2a853eb5e72..20b9bbe5bddcc39696ef4964e9f8e28c2c4debd1 100644 (file)
@@ -1,26 +1,37 @@
 <?php
-
 /**
- * This shows system specification details.
- *
- * Copyright (c) 1999-2004 The SquirrelMail development team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * This is a standard Squirrelmail-1.2 API for plugins.
+ * This script shows system specification details.
  *
- * $Id$
+ * @copyright &copy; 1999-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage bug_report
  */
 
-
+/**
+ * @ignore
+ */
 define('SM_PATH','../../');
+/** load system functions */
 include_once(SM_PATH . 'include/validate.php');
-
-
+/** load error_box() function */
+include_once(SM_PATH . 'functions/display_messages.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."),$color);
+    echo "\n</body></html>\n";
+    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');
@@ -30,4 +41,4 @@ echo $body;
 ?>
 </pre>
 </body>
-</html>
+</html>
\ No newline at end of file