diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-05-15 22:33:05 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-05-15 22:33:05 +0000 |
commit | ebd509e69cb5c95922fe2f813cd546cb5b74a742 (patch) | |
tree | 928848bd539885aeb27e7562354962395cc6f620 /install | |
parent | d2c3163c88a9fe243b5b0d4f45cc9d4ec8451ec0 (diff) | |
download | elgg-ebd509e69cb5c95922fe2f813cd546cb5b74a742.tar.gz elgg-ebd509e69cb5c95922fe2f813cd546cb5b74a742.tar.bz2 |
fixed regenerating cache when installing Elgg - wasn't picking up the plugins before
git-svn-id: http://code.elgg.org/elgg/trunk@9091 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'install')
-rw-r--r-- | install/ElggInstaller.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ElggInstaller.php b/install/ElggInstaller.php index 719e9b67f..8da898428 100644 --- a/install/ElggInstaller.php +++ b/install/ElggInstaller.php @@ -524,6 +524,8 @@ class ElggInstaller { $params['destination'] = 'index.php'; } + elgg_invalidate_simplecache(); + $this->render('complete', $params); } @@ -1405,8 +1407,6 @@ class ElggInstaller { $CONFIG->dataroot = $dataroot; $cache = new ElggFileCache($dataroot); $cache->delete('view_paths'); - elgg_invalidate_simplecache(); - elgg_regenerate_simplecache(); return TRUE; } |