fix missing config entries on global settings page

This commit is contained in:
NetworkNub
2016-10-25 14:10:33 -04:00
parent 3ed80ab41b
commit e5d248ea8a

View File

@@ -91,7 +91,7 @@ if (is_admin() === true) {
$r = '<table class="table table-condensed table-hover"><tbody>';
foreach ($a as $k => $v) {
if (!empty($v)) {
if (!in_array($k, $excluded)) {
if (!in_array($k, $excluded, true)) {
$r .= '<tr><td class="col-md-2"><i><b>' . $k . '</b></i></td><td class="col-md-10">';
$r .= is_array($v) ? a2t($v) : '<code>' . wordwrap($v, 75, '<br/>') . '</code>';
$r .= '</td></tr>';