summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2013-01-26 18:20:26 -0800
committerChris Buechler <cmb@pfsense.org>2013-01-26 18:20:26 -0800
commit7709c5a57063fdbbf6ad774a0f4881349cf01f9d (patch)
tree64ace5ccfa197397761e388ef908c30f96a73e65
parent6d53bbb5062fc5ce5bc05801718aa10edd95ab37 (diff)
parent5b3bd46c007086c9bb6aca6868efd75b698d57d8 (diff)
downloadpfsense-7709c5a57063fdbbf6ad774a0f4881349cf01f9d.zip
pfsense-7709c5a57063fdbbf6ad774a0f4881349cf01f9d.tar.gz
Merge pull request #348 from bcyrill/gif_patch1
Re-add lost parenthesis
-rw-r--r--usr/local/www/interfaces_gif_edit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/interfaces_gif_edit.php b/usr/local/www/interfaces_gif_edit.php
index f12f917..0da8a5a 100644
--- a/usr/local/www/interfaces_gif_edit.php
+++ b/usr/local/www/interfaces_gif_edit.php
@@ -91,7 +91,7 @@ if ($_POST) {
continue;
/* FIXME: needs to perform proper subnet checks in the feature */
- if (($gif['if'] == $interface && ($gif['tunnel-remote-addr'] == $_POST['tunnel-remote-addr'])) {
+ if (($gif['if'] == $interface) && ($gif['tunnel-remote-addr'] == $_POST['tunnel-remote-addr'])) {
$input_errors[] = sprintf(gettext("A gif with the network %s is already defined."), $gif['tunnel-remote-addr']);
break;
}
OpenPOWER on IntegriCloud