diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/ElggInstaller.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/install/ElggInstaller.php b/install/ElggInstaller.php index aaa786033..aa5903a08 100644 --- a/install/ElggInstaller.php +++ b/install/ElggInstaller.php @@ -26,16 +26,15 @@ class ElggInstaller { protected $isAction = FALSE; - protected $autoLogin = FALSE; + protected $autoLogin = TRUE; /** * @var array An array of widgets to add to the admin dashboard. * - * @warning Columbus start on the right at 1. * In the form column => array of handlers in order, top to bottom */ protected $adminWidgets = array( - 1 => array('content_stats'), + 1 => array('admin_welcome', 'content_stats'), 2 => array('online_users', 'new_users'), ); @@ -507,7 +506,7 @@ class ElggInstaller { $params = array(); if ($this->autoLogin) { - $params['destination'] = 'pg/admin/plugins/simple'; + $params['destination'] = 'pg/admin/'; } else { $params['destination'] = 'index.php'; } |