diff options
author | Michael Tänzer <neo@nhng.de> | 2014-04-07 01:22:06 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-04-07 01:22:06 +0200 |
commit | 8654cbfb0e6eed0dda52379d9bfd971c3e254b74 (patch) | |
tree | 8e40e35199470facaaafceeb966b89b44fdea929 /pages/account | |
parent | ecb426405c54a71511c2c4949e22fb030d8cec3f (diff) | |
download | cacert-devel-8654cbfb0e6eed0dda52379d9bfd971c3e254b74.tar.gz cacert-devel-8654cbfb0e6eed0dda52379d9bfd971c3e254b74.tar.xz cacert-devel-8654cbfb0e6eed0dda52379d9bfd971c3e254b74.zip |
bug 1138: rename interface to better describe what these functions do
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'pages/account')
-rw-r--r-- | pages/account/43.php | 2 | ||||
-rw-r--r-- | pages/account/59.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pages/account/43.php b/pages/account/43.php index b4f2465..f5d2098 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_address(intval($row['id']),mysql_real_escape_string($row['email'])); + $dres = get_email_addresses(intval($row['id']),mysql_real_escape_string($row['email'])); if(mysql_num_rows($dres) > 0) { ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> diff --git a/pages/account/59.php b/pages/account/59.php index e9643d0..3c8d364 100644 --- a/pages/account/59.php +++ b/pages/account/59.php @@ -130,7 +130,7 @@ if ( $support == 1) { </table> <br/> <? -$dres = get_email_address($userid,'',1); +$dres = get_email_addresses($userid,'',1); if(mysql_num_rows($dres) > 0) { ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> @@ -166,7 +166,7 @@ if(mysql_num_rows($dres) > 0) { <br/> <? -$dres = get_training_result($userid); +$dres = get_training_results($userid); ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> <tr> |