diff options
author | Michael Tänzer <neo@nhng.de> | 2011-02-16 20:01:54 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2011-02-16 20:01:54 +0100 |
commit | a509863d4933c17fe08f6081858c6b22c4517fdd (patch) | |
tree | 724f1ebec63435a06c640c6b14f9991eff7587e6 /pages/wot/10.php | |
parent | 55c305d6c2c766e4aed538e6c2d2e93bcdbb8ddc (diff) | |
download | cacert-devel-a509863d4933c17fe08f6081858c6b22c4517fdd.tar.gz cacert-devel-a509863d4933c17fe08f6081858c6b22c4517fdd.tar.xz cacert-devel-a509863d4933c17fe08f6081858c6b22c4517fdd.zip |
#827: Review Thawte Patch
Corrections:
- Fix HTML markup
- Slight rewordings
- Always initialize variables before use
- Use printf() or echo instead of escaping PHP mode and immediately
entering it again
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'pages/wot/10.php')
-rw-r--r-- | pages/wot/10.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pages/wot/10.php b/pages/wot/10.php index 2c2e620..50b1ecb 100644 --- a/pages/wot/10.php +++ b/pages/wot/10.php @@ -47,7 +47,7 @@ </table> <center> <br> -<?=sprintf(_("The calculation of points will be changed in the near future. Please check the new calculation %s here %s"),"<a href='/wot.php?id=15'></strong>","</a>")?> +<?=sprintf(_("The calculation of points will be changed in the near future. Please check the %s new calculation %s"), "<a href='/wot.php?id=15'>", "</a>")?> <br> </center> <br> @@ -81,6 +81,7 @@ <? $thawte = ($row['method'] == "Thawte Points Transfer") or $thawte; } ?> + <tr> <td class="DataTD" colspan="3"><b><?=_("Total Points")?>:</b></td> <td class="DataTD"><?=intval($_SESSION['profile']['points'])?></td> <td class="DataTD" colspan="2"> </td> |