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 | |
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')
-rw-r--r-- | www/api/cemails.php | 3 | ||||
-rw-r--r-- | www/wot.php | 6 |
2 files changed, 5 insertions, 4 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"; + } ?> diff --git a/www/wot.php b/www/wot.php index 7ce757d..faa8339 100644 --- a/www/wot.php +++ b/www/wot.php @@ -133,9 +133,9 @@ function send_reminder() //This mail does not need to be translated $body = "Hi TTP adminstrators,\n\n"; $body .= "User ".$_SESSION['profile']['fname']." ". - $_SESSION['profile']['lname']." with email address '". - $_SESSION['profile']['email']."' is requesting a TTP assurances for ". - mysql_escape_string(stripslashes($_POST['country'])).".\n\n"; + $_SESSION['profile']['lname']." with email address '". + $_SESSION['profile']['email']."' is requesting a TTP assurances for ". + mysql_escape_string(stripslashes($_POST['country'])).".\n\n"; if ($_POST['ttptopup']=='1') { $body .= "The user is also requesting TTP TOPUP.\n\n"; }else{ |