aboutsummaryrefslogtreecommitdiffstats
path: root/config/openbgpd
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2013-07-24 09:09:21 -0300
committerRenato Botelho <garga@FreeBSD.org>2013-07-24 09:09:21 -0300
commit38ff9dece412adeadc345e23d00c833c509dc4a3 (patch)
tree3c196f62637c99ccaf4c8c32b39a7de522772688 /config/openbgpd
parent04794cb2ce8c4f68c51c987a17c22686bce948e1 (diff)
downloadpfsense-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.php2
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;
}