diff options
author | Bernhard Fröhlich <bernhard@cacert.org> | 2011-08-25 22:42:32 +0200 |
---|---|---|
committer | Bernhard Fröhlich <bernhard@cacert.org> | 2011-08-25 22:42:32 +0200 |
commit | a2c2ddd7b5ef0c04d52fe9f22439e30a6de27a87 (patch) | |
tree | 4aeeb9aa334f01204fb9c42ee602c895669afa71 | |
parent | bbc36730a848e9fa9a5e09f3c25de505fd511272 (diff) | |
download | cacert-devel-a2c2ddd7b5ef0c04d52fe9f22439e30a6de27a87.tar.gz cacert-devel-a2c2ddd7b5ef0c04d52fe9f22439e30a6de27a87.tar.xz cacert-devel-a2c2ddd7b5ef0c04d52fe9f22439e30a6de27a87.zip |
Typo fix
-rwxr-xr-x | pages/account/43.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/account/43.php b/pages/account/43.php index ae8bffc..f1bfb65 100755 --- a/pages/account/43.php +++ b/pages/account/43.php @@ -49,7 +49,7 @@ // $email contains non-digits ==> search for mail addresses // Be defensive here (outer join) if primary mail is not listed in email table $query = "select `users`.`id` as `id`, `email`.`email` as `email` - from `users` left oter join `email` on (`users`.`id`=`email`.`memid`) + from `users` left outer join `email` on (`users`.`id`=`email`.`memid`) where ((`email`.`email` like '$emailsearch' and `email`.`hash`='' and `email`.`deleted`=0) or `users`.`email` like '$emailsearch') |