1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-03-01 08:10:44 +01:00

Merge pull request #872 from vichan-devel/RealAngeleno-patch-17

modify themes to use numeric array #871
This commit is contained in:
Lorenzo Yario 2024-12-30 17:20:08 -06:00 committed by GitHub
commit 440e3126c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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";