general themes stuff
This commit is contained in:
parent
922409e323
commit
8baf6ca124
@ -151,14 +151,9 @@
|
||||
return $theme;
|
||||
}
|
||||
|
||||
function rebuildThemes($action) {
|
||||
function rebuildTheme($theme, $action) {
|
||||
global $config, $_theme;
|
||||
|
||||
// List themes
|
||||
$query = query("SELECT `theme` FROM `theme_settings` WHERE `name` IS NULL AND `value` IS NULL") or error(db_error());
|
||||
while($theme = $query->fetch()) {
|
||||
// A theme is installed
|
||||
$_theme = &$theme['theme'];
|
||||
$_theme = $theme;
|
||||
|
||||
$theme = loadThemeConfig($_theme);
|
||||
|
||||
@ -166,7 +161,15 @@
|
||||
require_once $config['dir']['themes'] . '/' . $_theme . '/theme.php';
|
||||
$theme['build_function']($action, themeSettings($_theme));
|
||||
}
|
||||
}
|
||||
|
||||
function rebuildThemes($action) {
|
||||
global $config, $_theme;
|
||||
|
||||
// List themes
|
||||
$query = query("SELECT `theme` FROM `theme_settings` WHERE `name` IS NULL AND `value` IS NULL") or error(db_error());
|
||||
while($theme = $query->fetch()) {
|
||||
rebuildTheme($theme['theme']);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user