From fc8dfd8893128e9c58dc269c99c948093de6c2a1 Mon Sep 17 00:00:00 2001 From: Davide Bellini Date: Tue, 15 Sep 2015 17:52:33 +0200 Subject: [PATCH] Changed default Admin password Default Admin password doesn't pass the new validation rule (min 8 chars) See: https://github.com/flarum/core/commit/cbcad27679faaaeb10206d7c25e21952231b5542#diff-2e6d4ed85cd06d3e11f7f8428746214eR126 --- src/Install/Console/DefaultData.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Install/Console/DefaultData.php b/src/Install/Console/DefaultData.php index 29a8a39f0..8849c4950 100644 --- a/src/Install/Console/DefaultData.php +++ b/src/Install/Console/DefaultData.php @@ -25,8 +25,8 @@ class DefaultData implements ProvidesData protected $adminUser = [ 'username' => 'admin', - 'password' => 'admin', - 'password_confirmation' => 'admin', + 'password' => 'password', + 'password_confirmation' => 'password', 'email' => 'admin@example.com', ];