diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-04-02 02:15:10 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-04-02 02:15:10 +0000 |
commit | 1c3d61fef60cfe8499b634531a716e348fcaa345 (patch) | |
tree | d711efb542bde0d16a46d942938283b229663828 /usr | |
parent | 2be3c2d5790da41cc6c9ba269f5345b32cf90e4a (diff) | |
download | pfsense-1c3d61fef60cfe8499b634531a716e348fcaa345.zip pfsense-1c3d61fef60cfe8499b634531a716e348fcaa345.tar.gz |
During the traffic shaping wizard turn the logo into a "abort" button. Clicking this will whipe the previous steps configuration.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/wizard.php | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/usr/local/www/wizard.php b/usr/local/www/wizard.php index 94f6641..0de1009 100755 --- a/usr/local/www/wizard.php +++ b/usr/local/www/wizard.php @@ -203,15 +203,20 @@ function enablechange() { <center> <br> + <?php - if($title == "Reload in progress") + if($title == "Reload in progress") { $ip = "http://{$config['interfaces']['lan']['ipaddr']}"; - else + } else { $ip = "/"; - + } + if($xml == "traffic_shaper_wizard.xml") { + echo "<a href='/firewall_shaper.php?remove=remove'>"; + } else { + echo "<a href='$ip'>"; + } ?> - -<a href="<?php echo $ip; ?>"><img border="0" src="./themes/<?= $g['theme']; ?>/images/logo.gif"></a> +<img border="0" src="./themes/<?= $g['theme']; ?>/images/logo.gif"></a> <p> <div style="width:700px;background-color:#ffffff" id="roundme"> <table bgcolor="#ffffff" width="600" cellspacing="0" cellpadding="3"> |