diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-17 02:43:27 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-17 02:43:27 +0000 |
commit | a270c1ebd1090bfac9d03c265fadee8d260113d7 (patch) | |
tree | 0c55d97a78ce753424c243c94da04a520b4a63d7 /install | |
parent | c428d54dcc5524c641a45aa66e6a06a1df60e931 (diff) | |
download | elgg-a270c1ebd1090bfac9d03c265fadee8d260113d7.tar.gz elgg-a270c1ebd1090bfac9d03c265fadee8d260113d7.tar.bz2 |
Changed order of the default admin widgets.
git-svn-id: http://code.elgg.org/elgg/trunk@8747 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 de111c5d4..900ab6fb0 100644 --- a/install/ElggInstaller.php +++ b/install/ElggInstaller.php @@ -34,8 +34,8 @@ class ElggInstaller { * In the form column => array of handlers in order, top to bottom */ protected $adminWidgets = array( - 1 => array('admin_welcome', 'content_stats'), - 2 => array('online_users', 'new_users'), + 1 => array('online_users', 'new_users', 'content_stats'), + 2 => array('admin_welcome'), ); /** |