Fix invalid return point in functions.php (#7608)

The return statement would cause the functions.php to return too early before all functions below could be declared.
This commit is contained in:
frytimo
2025-11-10 11:36:57 -04:00
committed by GitHub
parent 203ce4d2a3
commit 9abc8c751f

View File

@@ -230,6 +230,7 @@ if (!function_exists('uuid')) {
exit; exit;
} }
} }
return '';
} }
} }
@@ -1974,7 +1975,7 @@ if (!function_exists('send_email')) {
$email_error = $email->email_error; $email_error = $email->email_error;
return true; return true;
} }
return false;
} }
//encrypt a string //encrypt a string