diff options
author | Nachtfalkeaw <nachtfalkeaw@web.de> | 2011-09-11 00:58:35 +0300 |
---|---|---|
committer | Nachtfalkeaw <nachtfalkeaw@web.de> | 2011-09-11 00:58:35 +0300 |
commit | 802e740192e830169193005d13ab90b3255b85f0 (patch) | |
tree | 90c4aec29a80be93d0d4d071adbfe711dfa9a590 | |
parent | c8d4ea7fc22d1581f5e48b112476cc170259fd5b (diff) | |
download | pfsense-packages-802e740192e830169193005d13ab90b3255b85f0.tar.gz pfsense-packages-802e740192e830169193005d13ab90b3255b85f0.tar.bz2 pfsense-packages-802e740192e830169193005d13ab90b3255b85f0.zip |
fixing wrong variable reported in: http://redmine.pfsense.com/issues/1842
-rw-r--r-- | config/freeradius.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/freeradius.inc b/config/freeradius.inc index 8c457e1f..b7e4208c 100644 --- a/config/freeradius.inc +++ b/config/freeradius.inc @@ -461,7 +461,7 @@ function freeradius_users_resync() { if ($multiconnect <> '') { $head .=", Simultaneous-Use += $multiconnect"; } - if ($x <> '') { + if ($userexpiration <> '') { $head .=", Expiration := ".'"'.$userexpiration.'"'; } if ($onlinetime <> '') { |