diff options
author | Renato Botelho <garga@FreeBSD.org> | 2013-07-24 09:09:21 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2013-07-24 09:09:21 -0300 |
commit | 38ff9dece412adeadc345e23d00c833c509dc4a3 (patch) | |
tree | 3c196f62637c99ccaf4c8c32b39a7de522772688 /config/openbgpd | |
parent | 04794cb2ce8c4f68c51c987a17c22686bce948e1 (diff) | |
download | pfsense-packages-38ff9dece412adeadc345e23d00c833c509dc4a3.tar.gz pfsense-packages-38ff9dece412adeadc345e23d00c833c509dc4a3.tar.bz2 pfsense-packages-38ff9dece412adeadc345e23d00c833c509dc4a3.zip |
Fix a typo s/,/./
Diffstat (limited to 'config/openbgpd')
-rw-r--r-- | config/openbgpd/openbgpd_status.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/openbgpd/openbgpd_status.php b/config/openbgpd/openbgpd_status.php index 360b19a5..2460ea7f 100644 --- a/config/openbgpd/openbgpd_status.php +++ b/config/openbgpd/openbgpd_status.php @@ -43,7 +43,7 @@ defCmdT("neighbors", "OpenBGPD Neighbors", "bgpctl show neighbor"); if (isset($_REQUEST['isAjax'])) { if (isset($_REQUEST['cmd']) && isset($commands[$_REQUEST['cmd']])) - echo htmlspecialchars_decode(doCmdT($commands[$_REQUEST['cmd']][1], $_REQUEST['limit']. $_REQUEST['filter'])); + echo htmlspecialchars_decode(doCmdT($commands[$_REQUEST['cmd']][1], $_REQUEST['limit'], $_REQUEST['filter'])); exit; } |