diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-07-05 20:40:45 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-07-05 20:40:45 +0000 |
commit | f2d7bc114c3b4a18ae607ad30a97b4e8dd8568be (patch) | |
tree | 339bfe30e3fc1c70e78699069611f84dcd88da6c | |
parent | 6f82a11f109cc993ab8df53fadc9763f95d353ec (diff) | |
download | pfsense-f2d7bc114c3b4a18ae607ad30a97b4e8dd8568be.zip pfsense-f2d7bc114c3b4a18ae607ad30a97b4e8dd8568be.tar.gz |
Escape $lan correctly
-rw-r--r-- | etc/inc/filter.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 8f796e3..2509c69 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -2626,7 +2626,7 @@ EOD; # make sure the user cannot lock himself out of the webGUI or SSH anchor "anti-lockout" -pass in quick on $lan from any to $lanip keep state label "anti-lockout web rule" +pass in quick on \$lan from any to $lanip keep state label "anti-lockout web rule" EOD; } |