Revision 709cc6e0
Added by Bill Marquette almost 18 years ago
usr/local/www/system.php | ||
---|---|---|
98 | 98 |
} |
99 | 99 |
if ($_POST['webguiport'] && (!is_numericint($_POST['webguiport']) || |
100 | 100 |
($_POST['webguiport'] < 1) || ($_POST['webguiport'] > 65535))) { |
101 |
$input_errors[] = "A valid TCP/IP port must be specified for the webGUI port.";
|
|
101 |
$input_errors[] = "A valid TCP/IP port must be specified for the webConfigurator port.";
|
|
102 | 102 |
} |
103 | 103 |
if (($_POST['password']) && ($_POST['password'] != $_POST['password2'])) { |
104 | 104 |
$input_errors[] = "The passwords do not match."; |
... | ... | |
224 | 224 |
PPTP VPN clients, though.</span></p></td> |
225 | 225 |
</tr> |
226 | 226 |
<tr> |
227 |
<td width="22%" valign="top" class="vncell">webGUI protocol</td>
|
|
227 |
<td width="22%" valign="top" class="vncell">webConfigurator protocol</td>
|
|
228 | 228 |
<td width="78%" class="vtable"> <input name="webguiproto" type="radio" value="http" <?php if ($pconfig['webguiproto'] == "http") echo "checked"; ?>> |
229 | 229 |
HTTP <input type="radio" name="webguiproto" value="https" <?php if ($pconfig['webguiproto'] == "https") echo "checked"; ?>> |
230 | 230 |
HTTPS</td> |
231 | 231 |
</tr> |
232 | 232 |
<tr> |
233 |
<td valign="top" class="vncell">webGUI port</td>
|
|
233 |
<td valign="top" class="vncell">webConfigurator port</td>
|
|
234 | 234 |
<td class="vtable"> <input name="webguiport" type="text" class="formfld unknown" id="webguiport" "size="5" value="<?=htmlspecialchars($config['system']['webgui']['port']);?>"> |
235 | 235 |
<br> |
236 |
<span class="vexpl">Enter a custom port number for the webGUI
|
|
236 |
<span class="vexpl">Enter a custom port number for the webConfigurator
|
|
237 | 237 |
above if you want to override the default (80 for HTTP, 443 |
238 | 238 |
for HTTPS). Changes will take effect immediately after save.</span></td> |
239 | 239 |
</tr> |
Also available in: Unified diff
global s/[wW]ebGUI/webConfigurator/ - brought up via ticket #1427