diff options
author | Ermal <eri@pfsense.org> | 2012-11-21 19:28:58 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2012-11-21 19:40:01 +0000 |
commit | 7e196969b3bdb231af8b634a21a20bfc36be493c (patch) | |
tree | 7ff6a15d6840f6c84693ab64df6a1c85916e6544 | |
parent | d77696d30ef7a179675b8de652555615b9b58a1b (diff) | |
download | pfsense-7e196969b3bdb231af8b634a21a20bfc36be493c.zip pfsense-7e196969b3bdb231af8b634a21a20bfc36be493c.tar.gz |
Correct reload of ppp interface after modifications in the assign->ppps section
-rw-r--r-- | usr/local/www/interfaces_ppps_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/interfaces_ppps_edit.php b/usr/local/www/interfaces_ppps_edit.php index 411359f..7bcdcf2 100644 --- a/usr/local/www/interfaces_ppps_edit.php +++ b/usr/local/www/interfaces_ppps_edit.php @@ -366,7 +366,7 @@ if ($_POST) { configure_cron(); foreach ($iflist as $pppif => $ifdescr) { - if ($config['interfaces'][$if]['if'] == $ppp['if']) + if ($config['interfaces'][$pppif]['if'] == $ppp['if']) interface_ppps_configure($pppif); } header("Location: interfaces_ppps.php"); |