projects
/
Packages
/
TYPO3.CMS.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[BUGFIX] ext:install Better error handling in first folder step
[Packages/TYPO3.CMS.git]
/
typo3
/
sysext
/
install
/
Classes
/
Controller
/
StepController.php
diff --git
a/typo3/sysext/install/Classes/Controller/StepController.php
b/typo3/sysext/install/Classes/Controller/StepController.php
index
70ed1af
..
19ec296
100644
(file)
--- a/
typo3/sysext/install/Classes/Controller/StepController.php
+++ b/
typo3/sysext/install/Classes/Controller/StepController.php
@@
-296,8
+296,7
@@
class StepController extends AbstractController {
$this->redirect();
}
$this->redirect();
}
- if (!is_dir(PATH_typo3conf)
- || count($errorMessagesFromExecute) > 0
+ if (!@is_dir(PATH_typo3conf)
|| $needsExecution
) {
/** @var \TYPO3\CMS\Install\Controller\Action\Step\StepInterface $action */
|| $needsExecution
) {
/** @var \TYPO3\CMS\Install\Controller\Action\Step\StepInterface $action */
@@
-332,4
+331,4
@@
class StepController extends AbstractController {
}
}
}
}
}
}
-?>
+?>
\ No newline at end of file