aboutsummaryrefslogtreecommitdiff
path: root/verify.php
diff options
context:
space:
mode:
Diffstat (limited to 'verify.php')
-rw-r--r--verify.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/verify.php b/verify.php
index 2e4a26a..92ca4f7 100644
--- a/verify.php
+++ b/verify.php
@@ -1,6 +1,10 @@
<?php
+// Include config file
+require_once "config.php";
+
function send_verify_notification($username) {
+ global $link;
// send admin mail
$sql = "SELECT email FROM users WHERE type = 'admin'";
$stmt = mysqli_prepare($link, $sql);
@@ -29,9 +33,6 @@ if (isset($_SESSION["loggedin"]) && $_SESSION["loggedin"] === true) {
exit;
}
-// Include config file
-require_once "config.php";
-
// Define variables and initialize with empty values
$code = "";
$code_err = "";