equal
deleted
inserted
replaced
23 |
23 |
24 |
24 |
25 if(!@include_once("config.inc.php")) |
25 if(!@include_once("config.inc.php")) |
26 { |
26 { |
27 error( _('You have to create a config.inc.php!') ); |
27 error( _('You have to create a config.inc.php!') ); |
28 } |
|
29 |
|
30 if(is_file( dirname(__FILE__) . '/../install.php')) |
|
31 { |
|
32 error( _('You have to remove install.php before this program will run') ); |
|
33 } |
|
34 |
|
35 if(is_file( dirname(__FILE__) . '/../migrator.php')) |
|
36 { |
|
37 error( _('You have to remove migrator.php before this program will run') ); |
|
38 } |
28 } |
39 |
29 |
40 /************* |
30 /************* |
41 * Constants * |
31 * Constants * |
42 *************/ |
32 *************/ |