Add APP_NAME constant

Improved issue display
Add component::prepend
Add switches to form html
Updated form html to Bootstrap 5.
Updated navigation html to Bootstrap 5.
This commit is contained in:
Joey Kimsey
2025-01-21 20:46:13 -05:00
parent d9e61d3f8f
commit 61589b35ff
6 changed files with 84 additions and 29 deletions

View File

@ -37,6 +37,9 @@ class Issues {
$child = [ $child ];
}
foreach ( $child as $children ) {
if ( ! is_string( $children ) ) {
$children = var_export( $children, true );
}
$out .= '<li>' . $children . '</li>';
}
$out .= '</ul>';