modify themes to use numeric array #871

This commit is contained in:
Lorenzo Yario
2024-12-30 17:19:42 -06:00
committed by GitHub
parent 74959aaed9
commit 47cbbbc972

View File

@@ -31,10 +31,10 @@ function rebuild_themes(string $action, $boardname = false): void {
}
if (PHP_SAPI === 'cli') {
echo "Rebuilding theme ".$theme['theme']."... ";
echo "Rebuilding theme ".$theme[0]."... ";
}
rebuild_theme($theme['theme'], $action, $boardname);
rebuild_theme($theme[0], $action, $boardname);
if (PHP_SAPI === 'cli') {
echo "done\n";