diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-10-13 14:15:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-10-13 14:15:08 +0000 |
commit | b1a26d0b114548e4ece508513879866028a34a0b (patch) | |
tree | b1d1211da5463b2010421ef1a3aca81005338206 /install.php | |
parent | dd5ded8334010db30ae880cedd210881f1a97c43 (diff) | |
download | brdo-b1a26d0b114548e4ece508513879866028a34a0b.tar.gz brdo-b1a26d0b114548e4ece508513879866028a34a0b.tar.bz2 |
- Patch #544360 by David_Rothstein: fix for dashboard module.
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install.php b/install.php index 43cd06bcb..6ad806ed7 100644 --- a/install.php +++ b/install.php @@ -1442,9 +1442,9 @@ function install_finished(&$install_state) { // need to modify it via hook_system_info_alter(). We need to clear the // theme static cache first, to make sure that the theme data is actually // rebuilt. - drupal_static_reset('_system_get_theme_data'); - system_get_module_data(); - system_get_theme_data(); + drupal_static_reset('_system_rebuild_theme_data'); + system_rebuild_module_data(); + system_rebuild_theme_data(); // Rebuild menu and registry to get content type links registered by the // profile, and possibly any other menu items created through the tasks. |