diff options
author | Michael Tänzer <neo@nhng.de> | 2014-04-11 17:09:42 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-04-11 17:09:42 +0200 |
commit | bb07598cad8ae8295b4e4714046ad9da93fb6b5a (patch) | |
tree | 56946e6ade100605da9aa65998f4e0f3d242ab01 | |
parent | 07891c06fac608d47c72b0faf774beb8bcbda550 (diff) | |
download | cacert-devel-bb07598cad8ae8295b4e4714046ad9da93fb6b5a.tar.gz cacert-devel-bb07598cad8ae8295b4e4714046ad9da93fb6b5a.tar.xz cacert-devel-bb07598cad8ae8295b4e4714046ad9da93fb6b5a.zip |
bug 1138: Don't double escape
Signed-off-by: Michael Tänzer <neo@nhng.de>
-rw-r--r-- | 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 9b52838..fe478d8 100644 --- a/pages/account/43.php +++ b/pages/account/43.php @@ -403,7 +403,7 @@ if(intval($_REQUEST['userid']) > 0) { <br/> <? //list secondary email addresses - $dres = get_email_addresses(intval($row['id']),mysql_real_escape_string($row['email'])); + $dres = get_email_addresses(intval($row['id']),$row['email']); if(mysql_num_rows($dres) > 0) { ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> |