Skip to content
Snippets Groups Projects
Commit 2ae2d0ee authored by Ken Rickard's avatar Ken Rickard
Browse files

-- _system_theme_list() has been removed from core.

-- Releases 7.x.2.3
parent 708285df
No related branches found
Tags 7.x-1.16
No related merge requests found
......@@ -5,6 +5,8 @@
-- Releases 7.x.2.1
-- Reverts the parse_url() replaced with drupal_parse_url().
-- Releases 7.x.2.2
-- _system_theme_list() has been removed from core.
-- Releases 7.x.2.3
06-JUN-2010
-- Branches the 7-x-2 release to bugfix only.
......
......@@ -51,7 +51,7 @@ function domain_theme_form($form, &$form_state, $domain) {
'#type' => 'value',
'#value' => $domain['domain_id'],
);
$themes = _system_theme_list();
$themes = system_rebuild_theme_data();
$form['theme'] = array(
'#tree' => TRUE,
'#description' => t('To enable additional themes, <a href="!url">configure them globally</a>', array('!url' => url('admin/appearance'))),
......@@ -122,7 +122,7 @@ function theme_domain_theme_form($variables) {
$form = $variables['form'];
$output = '';
$output .= drupal_render($form['intro']);
$themes = _system_theme_list();
$themes = system_rebuild_theme_data();
$header = array(t('Screenshot'), t('Theme'), t('Default'), t('Options'));
$rows = array();
foreach (element_children($form['theme']) as $key) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment