-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommand_bugreport.php
More file actions
40 lines (33 loc) · 1020 Bytes
/
Copy pathcommand_bugreport.php
File metadata and controls
40 lines (33 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
// Bug Reports
//
// The second line MUST be the name of the command that is to be shown in the command list.
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2 of the License, or (at your
// option) any later version.
//
// File: bugreport.php
include ("config/config.php");
$template_object->enable_gzip = 0;
if (checklogin())
{
$template_object->enable_gzip = 0;
include ("footer.php");
die();
}
$templatename = "master_template/";
include ("header.php");
echo "<h1>Send Bug Report</h1><br><br>";
?>
<script language="Javascript" type="text/javascript">
<!--
window.open('http://www.aatraders.com/bugtrack/index.php', '_bugreport', 'HEIGHT=400,resizable=yes,WIDTH=700,scrollbars=yes,toolbar=yes');
//-->
</script>
<?php
echo "A window has been opened to the Bug Report Page.<br><br>";
echo $l_global_mmenu;
include ("footer.php");
?>