Skip to content

Commit

Permalink
Support display of config override array values.
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianbj committed Apr 29, 2024
1 parent 61bed50 commit d400eb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TracyDebugger.module.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static function getModuleInfo() {
'summary' => __('Tracy debugger from Nette with many PW specific custom tools.', __FILE__),
'author' => 'Adrian Jones',
'href' => 'https://processwire.com/talk/forum/58-tracy-debugger/',
'version' => '4.26.24',
'version' => '4.26.25',
'autoload' => 100000, // in PW 3.0.114+ higher numbers are loaded first - we want Tracy first
'singular' => true,
'requires' => 'ProcessWire>=2.7.2, PHP>=5.4.4',
Expand Down Expand Up @@ -3280,7 +3280,7 @@ public function getModuleConfigInputfields(array $data) {
elseif($v === false) {
$v = 'false';
}
$fieldset->value .= '<tr><td>'.$k.'</td><td>'.$v.'</td></tr>';
$fieldset->value .= '<tr><td>'.$k.'</td><td>'.(is_array($v) ? implode(', ', $v) : $v).'</td></tr>';
}
$fieldset->value .= '</table>';
}
Expand Down

0 comments on commit d400eb9

Please sign in to comment.