diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-11-21 19:13:30 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-11-21 19:13:30 -0500 |
commit | 938455f6eec9f21ef7890cd8e75611594cf48492 (patch) | |
tree | e111a2de88844cebeb48773d9cd2c8785f1d9d64 | |
parent | ee63df59f259d4d69686c47fe559314929edb4e5 (diff) | |
download | pfsense-packages-938455f6eec9f21ef7890cd8e75611594cf48492.tar.gz pfsense-packages-938455f6eec9f21ef7890cd8e75611594cf48492.tar.bz2 pfsense-packages-938455f6eec9f21ef7890cd8e75611594cf48492.zip |
Use exec()
-rw-r--r-- | config/unbound/unbound_status.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/unbound/unbound_status.php b/config/unbound/unbound_status.php index 9b7be071..fa4ab29a 100644 --- a/config/unbound/unbound_status.php +++ b/config/unbound/unbound_status.php @@ -140,7 +140,7 @@ function execCmds() { <tr> <td class="tabcont" width="100%"> <?php - $entries = trim(system("/usr/local/sbin/unbound-control dump_cache | wc -l")); + $entries = trim(exec("/usr/local/sbin/unbound-control dump_cache | wc -l")); defCmdT("Unbound status", "unbound-control status", "6"); defCmdT("Unbound stats", "unbound-control stats_noreset"); defCmdT("Unbound stubs", "unbound-control list_stubs", "8"); |