Index: trunk/phase3/includes/CategoryPage.php |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | */ |
9 | 9 | |
10 | 10 | if( !defined( 'MEDIAWIKI' ) ) |
11 | | - die( -1 ); |
| 11 | + die( 1 ); |
12 | 12 | |
13 | 13 | /** |
14 | 14 | * @package MediaWiki |
Index: trunk/phase3/includes/AjaxDispatcher.php |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | require_once( 'AjaxFunctions.php' ); |
18 | 18 | |
19 | 19 | if ( ! $wgUseAjax ) { |
20 | | - die ( -1 ); |
| 20 | + die( 1 ); |
21 | 21 | } |
22 | 22 | |
23 | 23 | class AjaxDispatcher { |
Index: trunk/phase3/includes/proxy_check.php |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | */ |
7 | 7 | |
8 | 8 | if( php_sapi_name() != 'cli' ) { |
9 | | - die( -1 ); |
| 9 | + die( 1 ); |
10 | 10 | } |
11 | 11 | |
12 | 12 | /** |
Index: trunk/phase3/includes/AjaxFunctions.php |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | 4 | if( !defined( 'MEDIAWIKI' ) ) |
5 | | - die( -1 ); |
| 5 | + die( 1 ); |
6 | 6 | |
7 | 7 | require_once('WebRequest.php'); |
8 | 8 | |
Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -1,6 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | if ( ! defined( 'MEDIAWIKI' ) ) |
4 | | - die( -1 ); |
| 4 | + die( 1 ); |
5 | 5 | |
6 | 6 | # This program is free software; you can redistribute it and/or modify |
7 | 7 | # it under the terms of the GNU General Public License as published by |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -21,7 +21,7 @@ |
22 | 22 | # This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined |
23 | 23 | if( !defined( 'MEDIAWIKI' ) ) { |
24 | 24 | echo "This file is part of MediaWiki and is not a valid entry point\n"; |
25 | | - die( -1 ); |
| 25 | + die( 1 ); |
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |