]> git.gsnw.org Git - m0n0chwall.git/commitdiff
Fix bug (missing '=') where configured per-user bandwidth limits don't show up in...
authorjdegraeve <jdegraeve@e36fee2c-cc09-0410-a7cc-ebac5c6737de>
Wed, 31 May 2006 21:46:39 +0000 (21:46 +0000)
committerjdegraeve <jdegraeve@e36fee2c-cc09-0410-a7cc-ebac5c6737de>
Wed, 31 May 2006 21:46:39 +0000 (21:46 +0000)
git-svn-id: https://svn.m0n0.ch/wall/trunk@142 e36fee2c-cc09-0410-a7cc-ebac5c6737de

webgui/license.php
webgui/services_captiveportal.php

index c3627da4972cfdd712ab71f1ca57a5326705ad95..bd27787322ee2860b491c177940143e07752e0eb 100755 (executable)
@@ -164,7 +164,7 @@ require("guiconfig.inc");
                          <br>
               Jonathan De Graeve (<a href="mailto:Jonathan.De.Graeve@imelda.be">Jonathan.De.Graeve@imelda.be</a>)<br>
               &nbsp;&nbsp;&nbsp;&nbsp;<em><font color="#666666">Complete captive portal RADIUS overhaul, cleanup</font></em><br>
-              &nbsp;&nbsp;&nbsp;&nbsp;<em><font color="#666666">captive portal: file manager, volume stats, FW rulepool (virtual port pool), MAC formatting, per user bandwidth limitation</font></em><br>
+              &nbsp;&nbsp;&nbsp;&nbsp;<em><font color="#666666">captive portal: file manager, volume stats, FW rulepool (virtual port pool), MAC formatting, per-user bandwidth limitation</font></em><br>
             <hr size="1">
             <p>m0n0wall is based upon/includes various free software packages, 
               listed below.<br>
index c3f51333485983977727e5129bf9d510af988c18..3e6bb07cb8f90a71e74cea87fc7354d7cd851671 100755 (executable)
@@ -367,11 +367,11 @@ to access after they've authenticated.</td>
         <table cellpadding="0" cellspacing="0">
         <tr>
         <td>Default download</td>
-        <td><input type="text" class="formfld" name="bwdefaultdn" id="bwdefaultdn" size="10" value"<?=htmlspecialchars($pconfig['bwdefaultdn']);?>"> Kbit/s</td>
+        <td><input type="text" class="formfld" name="bwdefaultdn" id="bwdefaultdn" size="10" value="<?=htmlspecialchars($pconfig['bwdefaultdn']);?>"> Kbit/s</td>
         </tr>
         <tr>
         <td>Default upload</td>
-        <td><input type="text" class="formfld" name="bwdefaultup" id="bwdefaultup" size="10" value"<?=htmlspecialchars($pconfig['bwdefaultup']);?>"> Kbit/s</td>
+        <td><input type="text" class="formfld" name="bwdefaultup" id="bwdefaultup" size="10" value="<?=htmlspecialchars($pconfig['bwdefaultup']);?>"> Kbit/s</td>
         </tr></table>
         <br>
         If this option is set, the captive portal will restrict each user who logs in to the specified default bandwidth. RADIUS can override the default settings. Leave empty or set to 0 for no limit. You will <strong>need</strong> to enable the traffic shaper for this to be effective.</td>