Skip to content
Snippets Groups Projects
Commit 81f1185f authored by Kevin Ditscheid's avatar Kevin Ditscheid
Browse files

[BUGFIX] Add mandatory wizard identifiers

parent bb683971
No related branches found
No related tags found
1 merge request!13Feature upgrade to9 lts
......@@ -33,6 +33,8 @@ use TYPO3\CMS\Install\Updates\AbstractUpdate;
* Migrate template db entries to the correct root pages
*/
class MigrateData extends AbstractUpdate {
protected $identifier = '';
/**
* @var string
*/
......
......@@ -33,6 +33,12 @@ use TYPO3\CMS\Install\Updates\AbstractUpdate;
* Makes german templates the default and former default as english templates
*/
class UpdateGermanAsDefault extends AbstractUpdate {
/**
* @var string
*/
protected $identifier = 'tx_sgmail_update_german_as_default';
/**
* @var string
*/
......
......@@ -34,6 +34,12 @@ use TYPO3\CMS\Install\Updates\AbstractUpdate;
* Fix all incorrect / deprecated language codes (be languages instead of sys languages) in the database
*/
class UpdateLanguages extends AbstractUpdate {
/**
* @var string
*/
protected $identifier = 'tx_sgmail_update_languages';
/**
* @var string
*/
......
......@@ -34,6 +34,12 @@ use TYPO3\CMS\Install\Updates\AbstractUpdate;
* Migrate template db entries to the correct root pages
*/
class UpdatePidToSiteRoot extends AbstractUpdate {
/**
* @var string
*/
protected $identifier = 'tx_sgmail_update_pid_to_site_root';
/**
* @var string
*/
......
......@@ -33,6 +33,11 @@ use TYPO3\CMS\Install\Updates\AbstractUpdate;
* Update the correct sending times (if any)
*/
class UpdateSendingTimes extends AbstractUpdate {
/**
* @var string
*/
protected $identifier = 'tx_sgmail_update_sending_times';
/**
* @var string
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment