Latest working copy, needs testing on windows

This commit is contained in:
color.diff=auto
2021-03-29 18:47:21 -06:00
parent f166a2df67
commit c868e47245
12 changed files with 439 additions and 107 deletions

View File

@@ -50,6 +50,10 @@ if (file_exists(APP_DB)) {
$sql = "SELECT * FROM D2Modder";
$mods = PDO_FetchAll($sql);
if (empty($mods)){
header("Location: /src/D2Config.php");
}
if (!empty($_POST)) {
$sql = "SELECT * FROM D2Modder WHERE `modname`='{$_POST['modname']}'";
$mod = PDO_FetchRow($sql);