Revision 461, 429 bytes
(checked in by kovell, 13 years ago)
|
Fixes: eve-dev changed to eve-id, recursive clearup scripts recurse more than one level, defunct admin sync removed.
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | /* |
---|
4 | * Request forwarder, look at common/index.php for the action and license |
---|
5 | */ |
---|
6 | |
---|
7 | @error_reporting(E_ERROR); |
---|
8 | if (!strncasecmp(PHP_OS, 'win', 3)) |
---|
9 | { |
---|
10 | @ini_set('include_path', ini_get('include_path').';.\\common\\includes'); |
---|
11 | } |
---|
12 | else |
---|
13 | { |
---|
14 | @ini_set('include_path', ini_get('include_path').':./common/includes'); |
---|
15 | } |
---|
16 | |
---|
17 | if(!ini_get('zlib.output_compression')) ob_start("ob_gzhandler"); |
---|
18 | |
---|
19 | include('common/index.php'); |
---|
20 | ?> |
---|