diff options
author | Benny Baumann <BenBE@geshi.org> | 2014-04-30 18:30:20 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2014-04-30 20:18:56 +0200 |
commit | 346899e832bd91f16733e197f592e7dae0173f70 (patch) | |
tree | b106ac272adc4bb0740fdbb0ab33e684e4eea1fd /www/api | |
parent | 7f02d479140d2c47e9359191ed2a7d687c6b9a33 (diff) | |
download | cacert-devel-346899e832bd91f16733e197f592e7dae0173f70.tar.gz cacert-devel-346899e832bd91f16733e197f592e7dae0173f70.tar.xz cacert-devel-346899e832bd91f16733e197f592e7dae0173f70.zip |
bug 1138: Whitespace changes and code formatting
Diffstat (limited to 'www/api')
-rw-r--r-- | www/api/cemails.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/api/cemails.php b/www/api/cemails.php index 4eb7597..f937069 100644 --- a/www/api/cemails.php +++ b/www/api/cemails.php @@ -42,6 +42,7 @@ } $query = "select * from `email` where `memid`='".intval($memid)."' and `hash`='' and `deleted`=0"; $res = mysql_query($query); - while($row = mysql_fetch_assoc($res)) + while($row = mysql_fetch_assoc($res)) { echo "EMAIL=".sanitizeHTML($row['email'])."\n"; + } ?> |