updated words file
This commit is contained in:
parent
8aa71de2bc
commit
31de51af19
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
; Comments start with ';', as in php.ini
|
; Comments start with ';', as in php.ini
|
||||||
|
|
||||||
[install]
|
[install]
|
||||||
login_info = "Please enter your MySQL Username and Password to install the database.<br>This is being loaded because config.php is missing.<br>This process will take about 30 seconds."
|
login_info = "Please enter your MySQL Username and Password to install the database.<br>This is being loaded because the is_installed file is missing.<br>This process will take about 30 seconds."
|
||||||
login_here = "here"
|
login_here = "here"
|
||||||
|
|
||||||
[dashboard]
|
[dashboard]
|
||||||
|
|
|
@ -17,7 +17,7 @@ require_once( '../../ams_lib/libinclude.php' );
|
||||||
if (!file_exists('../is_installed')) {
|
if (!file_exists('../is_installed')) {
|
||||||
//if is_installed doesnt exist run setup
|
//if is_installed doesnt exist run setup
|
||||||
require( 'installer/libsetup.php' );
|
require( 'installer/libsetup.php' );
|
||||||
} elseif ($_POST["function"] == "do_install") {
|
} elseif (isset($_POST["function"]) == "do_install") {
|
||||||
echo "Can't run setup while file '../is_installed' exists, please remove that file if you wish to run the install";
|
echo "Can't run setup while file '../is_installed' exists, please remove that file if you wish to run the install";
|
||||||
exit;
|
exit;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue