Skip to content

Commit 56784f8

Browse files
authored
Merge pull request #20 from cmu-delphi/fix/signup-issue
Troubleshoot signup issues
2 parents 7f8cb2d + 5c82fd0 commit 56784f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/common/database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function getUserByHash($dbh, &$output, $hash) {
9999
3 - Failure
100100
See getUserByHash
101101
*/
102-
function getUserByEmail($dbh, &$output, $email) {
102+
function getUserByEmail($dbh, $output, $email) {
103103
$result = $dbh->query("SELECT `hash` FROM ec_fluv_users WHERE `email` = '{$email}'");
104104
if($row = $result->fetch_assoc()) {
105105
return getUserByHash($output, $row['hash']);

0 commit comments

Comments
 (0)