Skip to content

Commit

Permalink
Merge pull request lochmueller#408 from dahaupt/fix-identifier-of-wiz…
Browse files Browse the repository at this point in the history
…ards

[BUGFIX] Return correct identifier in update wizards (class name)
  • Loading branch information
lochmueller authored Jul 13, 2020
2 parents 91a49ce + 63a7dc2 commit e161e0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Updates/CalMigrationUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ protected function getNonMigratedCalIds()

public function getIdentifier(): string
{
return 'calendarizeCalMigrationUpdate';
return self::class;
}

public function getTitle(): string
Expand Down
2 changes: 1 addition & 1 deletion Classes/Updates/NewIncludeExcludeStructureUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function executeUpdate(): bool

public function getIdentifier(): string
{
return 'calendarizeNewIncludeExcludeStructureUpdate';
return self::class;
}

public function getTitle(): string
Expand Down

0 comments on commit e161e0a

Please sign in to comment.