updated words file

This commit is contained in:
botanic 2013-12-16 23:19:29 -08:00
parent 395503bed1
commit 2776b4f461
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
; Comments start with ';', as in php.ini
[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"
[dashboard]

View file

@ -17,7 +17,7 @@ require_once( '../../ams_lib/libinclude.php' );
if (!file_exists('../is_installed')) {
//if is_installed doesnt exist run setup
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";
exit;
} else {