~ubuntu-branches/ubuntu/quantal/squirrelmail/quantal

« back to all changes in this revision

Viewing changes to plugins/bug_report/bug_report.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2008-09-28 16:33:48 UTC
  • mfrom: (11.1.7 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080928163348-hgxf8au2d4zspabg
Tags: 2:1.4.15-3
Cookies sent over HTTPS will now be confined to HTTPS only
(cookie secure flag) and more support for the HTTPOnly cookie
attribute. Patch taken from upstream release.
(CVE-2008-3663, closes: #499942)

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 * a button to show the bug report mail message in order to actually
9
9
 * send it.
10
10
 *
11
 
 * Copyright (c) 1999-2006 The SquirrelMail Project Team
 
11
 * Copyright (c) 1999-2008 The SquirrelMail Project Team
12
12
 * Licensed under the GNU GPL. For full terms see the file COPYING.
13
13
 *
14
14
 * This is a standard Squirrelmail-1.2 API for plugins.
15
15
 *
16
 
 * @version $Id: bug_report.php,v 1.11.2.16 2006/05/01 14:58:16 tokul Exp $
 
16
 * @version $Id: bug_report.php 13029 2008-03-11 05:07:17Z pdontthink $
17
17
 * @package plugins
18
18
 * @subpackage bug_report
19
19
 */
24
24
define('SM_PATH','../../');
25
25
 
26
26
require_once(SM_PATH . 'include/validate.php');
 
27
 
 
28
 
 
29
// if this plugin is not enabled, don't continue
 
30
//
 
31
global $plugins, $color;
 
32
if (!in_array('bug_report', $plugins)) {
 
33
    plain_error_message(_("Plugin is not enabled"), $color);
 
34
    exit;
 
35
}
 
36
 
 
37
 
 
38
 
27
39
/* load sqimap_get_user_server() */
28
40
include_once(SM_PATH . 'functions/imap_general.php');
29
41
// loading form functions
218
230
      </table>
219
231
    </form>
220
232
  </body>
221
 
</html>
 
 
b'\\ No newline at end of file'
 
233
</html>