Skip to content

Commit

Permalink
chore: make seeded entity urls a bit more unique
Browse files Browse the repository at this point in the history
  • Loading branch information
jeabakker committed Jul 5, 2023
1 parent 182e8ef commit 2dc1697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/ColdTrick/StaticPages/Seeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function seed() {
'container_guid' => $container->guid,
'enable_comments' => $this->faker()->boolean() ? 'yes' : 'no',
'parent_guid' => 0,
'friendly_title' => static_make_friendly_title($this->faker()->words(3, true)),
'friendly_title' => static_make_friendly_title('static-' . $this->faker()->words(3, true)),
'order' => 0,
]);
} catch (MaxAttemptsException $e) {
Expand Down

0 comments on commit 2dc1697

Please sign in to comment.