Skip to content

Commit

Permalink
Added firstname/lastname to default admin user
Browse files Browse the repository at this point in the history
  • Loading branch information
Deepwinter committed Apr 4, 2012
1 parent 7e75285 commit 69701cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions classes/initializer/latticeauth.php
Expand Up @@ -35,6 +35,8 @@ public function initialize() {
$user = ORM::factory('user');
$user->status = 'ACTIVE';
$user->username = 'admin';
$user->firstname = 'Admin';
$user->lastname = 'Admin';
$password = Utility_Auth::randomPassword();
$user->password = $password;
$user->email = 'PLACEHOLDER_' . rand() . '@placeholder.com';
Expand Down

0 comments on commit 69701cf

Please sign in to comment.