- Patch #12794 by assimonds: make sure the node module is optional.
parent
b1392fb143
commit
495a03ae9d
|
@ -241,8 +241,10 @@ function theme_get_settings($key = NULL) {
|
||||||
'toggle_comment_user_picture' => 0,
|
'toggle_comment_user_picture' => 0,
|
||||||
);
|
);
|
||||||
|
|
||||||
foreach (node_list() as $type) {
|
if (module_exist('node')) {
|
||||||
$defaults['toggle_node_info_' . $type] = 1;
|
foreach (node_list() as $type) {
|
||||||
|
$defaults['toggle_node_info_' . $type] = 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$settings = array_merge($defaults, variable_get('theme_settings', array()));
|
$settings = array_merge($defaults, variable_get('theme_settings', array()));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue