Skip to content

Commit

Permalink
Fixed typo in $POST/$_POST
Browse files Browse the repository at this point in the history
  • Loading branch information
sbeaver-netgate committed Feb 22, 2017
1 parent 8899188 commit 27d15a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/usr/local/www/services_dhcp_edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ function staticmaps_sort($ifgui) {
$input_errors[] = gettext("A valid IPv4 address must be specified for the primary/secondary WINS servers.");
}

$parent_ip = get_interface_ip($POST['if']);
$parent_ip = get_interface_ip($_POST['if']);
if (is_ipaddrv4($parent_ip) && $_POST['gateway']) {
$parent_sn = get_interface_subnet($_POST['if']);
if (!ip_in_subnet($_POST['gateway'], gen_subnet($parent_ip, $parent_sn) . "/" . $parent_sn) && !ip_in_interface_alias_subnet($_POST['if'], $_POST['gateway'])) {
Expand Down
2 changes: 1 addition & 1 deletion src/usr/local/www/status_captiveportal.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function print_details($cpent) {
exit;
}

if ($POST['deleteall'] && !empty($cpzone) && isset($cpzoneid)) {
if ($_POST['deleteall'] && !empty($cpzone) && isset($cpzoneid)) {
captiveportal_disconnect_all();
header("Location: status_captiveportal.php?zone={$cpzone}");
exit;
Expand Down
2 changes: 1 addition & 1 deletion src/usr/local/www/vpn_ipsec_settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
vpn_ipsec_configure($needsrestart);
}

// The logic value sent by $POST for autoexcludelanaddress is opposite to
// The logic value sent by $_POST for autoexcludelanaddress is opposite to
// the way it is stored in the config as noshuntlaninterfaces.
// Reset the $pconfig value so it reflects the opposite of what was $POSTed.
// This helps a redrawn UI page after Save to correctly display the most recently entered setting.
Expand Down

0 comments on commit 27d15a2

Please sign in to comment.