Fixes for leaky data (#3219)
This commit is contained in:
parent
96a66b42fd
commit
1d55e8aa3f
|
|
@ -111,7 +111,7 @@ class CreateTestData extends Command
|
||||||
'is_admin' => 1,
|
'is_admin' => 1,
|
||||||
'is_locked' => 0,
|
'is_locked' => 0,
|
||||||
'permissions' => '',
|
'permissions' => '',
|
||||||
'settings' => json_encode(DefaultSettings::userSettings()),
|
'settings' => new \stdClass,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -164,7 +164,7 @@ class CreateTestData extends Command
|
||||||
'is_admin' => 1,
|
'is_admin' => 1,
|
||||||
'is_locked' => 0,
|
'is_locked' => 0,
|
||||||
'permissions' => '',
|
'permissions' => '',
|
||||||
'settings' => json_encode(DefaultSettings::userSettings()),
|
'settings' => new \stdClass,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$this->count = $this->count*10;
|
$this->count = $this->count*10;
|
||||||
|
|
@ -218,7 +218,7 @@ class CreateTestData extends Command
|
||||||
'is_admin' => 1,
|
'is_admin' => 1,
|
||||||
'is_locked' => 0,
|
'is_locked' => 0,
|
||||||
'permissions' => '',
|
'permissions' => '',
|
||||||
'settings' => json_encode(DefaultSettings::userSettings()),
|
'settings' => new \stdClass,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$this->count = $this->count*100;
|
$this->count = $this->count*100;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue