Index: trunk/phase3/maintenance/Maintenance.php |
— | — | @@ -926,7 +926,9 @@ |
927 | 927 | ini_set( 'include_path', ".:$IP:$IP/includes:$IP/languages:$IP/maintenance" ); |
928 | 928 | |
929 | 929 | if ( $lang == 'test' && $site == 'wikipedia' ) { |
930 | | - define( 'TESTWIKI', 1 ); |
| 930 | + if ( !defined( 'TESTWIKI' ) ) { |
| 931 | + define( 'TESTWIKI', 1 ); |
| 932 | + } |
931 | 933 | } |
932 | 934 | } |
933 | 935 | |
— | — | @@ -1254,4 +1256,3 @@ |
1255 | 1257 | return; |
1256 | 1258 | } |
1257 | 1259 | } |
1258 | | - |