diff options
author | NewEraCracker <neweracracker@gmail.com> | 2016-02-15 13:25:39 +0000 |
---|---|---|
committer | NewEraCracker <neweracracker@gmail.com> | 2016-02-15 13:25:39 +0000 |
commit | ee392675504ffcdc75b01d7cf61840a24e8d507a (patch) | |
tree | d7e8951ec0950e2993335bad2da804ff8c277b2a | |
parent | 7e3b6744aa295c8bb6ec54f05a5571abe1a25e09 (diff) | |
download | pfsense-ee392675504ffcdc75b01d7cf61840a24e8d507a.zip pfsense-ee392675504ffcdc75b01d7cf61840a24e8d507a.tar.gz |
Escape ampersands in links - part 2
-rw-r--r-- | src/usr/local/www/status_captiveportal_vouchers.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/local/www/status_captiveportal_vouchers.php b/src/usr/local/www/status_captiveportal_vouchers.php index de8fcc7..57a139c 100644 --- a/src/usr/local/www/status_captiveportal_vouchers.php +++ b/src/usr/local/www/status_captiveportal_vouchers.php @@ -142,11 +142,11 @@ display_top_tabs($tab_array); <table class="table table-striped table-hover table-condensed"> <thead> <tr> - <th><a href="?zone=<?=htmlspecialchars($cpzone)?>&order=0&showact=<?=htmlspecialchars($_GET['showact'])?>"><?=gettext("Voucher"); ?></a></th> - <th><a href="?zone=<?=htmlspecialchars($cpzone)?>&order=1&showact=<?=htmlspecialchars($_GET['showact'])?>"><?=gettext("Roll"); ?></a></th> - <th><a href="?zone=<?=htmlspecialchars($cpzone)?>&order=2&showact=<?=htmlspecialchars($_GET['showact'])?>"><?=gettext("Activated at"); ?></a></th> - <th><a href="?zone=<?=htmlspecialchars($cpzone)?>&order=3&showact=<?=htmlspecialchars($_GET['showact'])?>"><?=gettext("Expires in"); ?></a></th> - <th><a href="?zone=<?=htmlspecialchars($cpzone)?>&order=4&showact=<?=htmlspecialchars($_GET['showact'])?>"><?=gettext("Expires at"); ?></a></th> + <th><a href="?zone=<?=htmlspecialchars($cpzone)?>&order=0&showact=<?=htmlspecialchars($_GET['showact'])?>"><?=gettext("Voucher"); ?></a></th> + <th><a href="?zone=<?=htmlspecialchars($cpzone)?>&order=1&showact=<?=htmlspecialchars($_GET['showact'])?>"><?=gettext("Roll"); ?></a></th> + <th><a href="?zone=<?=htmlspecialchars($cpzone)?>&order=2&showact=<?=htmlspecialchars($_GET['showact'])?>"><?=gettext("Activated at"); ?></a></th> + <th><a href="?zone=<?=htmlspecialchars($cpzone)?>&order=3&showact=<?=htmlspecialchars($_GET['showact'])?>"><?=gettext("Expires in"); ?></a></th> + <th><a href="?zone=<?=htmlspecialchars($cpzone)?>&order=4&showact=<?=htmlspecialchars($_GET['showact'])?>"><?=gettext("Expires at"); ?></a></th> </tr> </thead> <tbody> |