diff options
author | arf20 <aruizfernandez05@gmail.com> | 2024-04-09 03:02:35 +0200 |
---|---|---|
committer | arf20 <aruizfernandez05@gmail.com> | 2024-04-09 03:02:35 +0200 |
commit | b708311d256bbf057b0d6ad2fba4d75642c5a095 (patch) | |
tree | 25c92ee9cd88469d855f7f159a9d5d62c479a972 /manageusers.php | |
parent | 328ffd24e0e3cf9f35db51d68b06e1f7e74e7047 (diff) | |
download | arfnet2-cstims-b708311d256bbf057b0d6ad2fba4d75642c5a095.tar.gz arfnet2-cstims-b708311d256bbf057b0d6ad2fba4d75642c5a095.zip |
Small fixes, add manual makeinvoice date
Diffstat (limited to 'manageusers.php')
-rw-r--r-- | manageusers.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manageusers.php b/manageusers.php index b0e7705..7d4044d 100644 --- a/manageusers.php +++ b/manageusers.php @@ -15,7 +15,7 @@ if ($type != "admin") die("Permission denied."); require_once "config.php"; // Get users -$sql = "SELECT id, username, email, verifycode, status, type, regdate FROM users"; +$sql = "SELECT id, username, password, email, verifycode, status, type, regdate FROM users"; $stmt = mysqli_prepare($link, $sql); mysqli_stmt_execute($stmt); $result = mysqli_stmt_get_result($stmt); |