a positive and a negative is supposted to be NEGATIVE stupid php

This commit is contained in:
botanic 2013-12-16 23:38:24 -08:00
parent 2776b4f461
commit e52c525827

View file

@ -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 (isset($_POST["function"]) == "do_install") { } elseif (isset($_POST["function"]) && $_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 {