-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.php
More file actions
executable file
·27 lines (22 loc) · 777 Bytes
/
error.php
File metadata and controls
executable file
·27 lines (22 loc) · 777 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
<?php
/*
==============================================================================
Copyright (c) 2013 Marc Augier
For a full list of contributors, see "credits.txt".
The full license can be read in "license.txt".
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.
See the GNU General Public License for more details.
Contact: m.augier@me.com
==============================================================================
*/
//
// stub file to activate error collection
//
////phpinfo();
error_reporting(E_ALL);
ini_set("display_errors", 1);
include("account.php");
?>