Skip to content
Snippets Groups Projects

Issue #3310729: Incorrect documentation link in UI in case of Process error

2 files
+ 12
3
Compare changes
  • Side-by-side
  • Inline
Files
2
  • bb204bd0
    Issue #3358012 by phenaproxima, Wim Leers: StageBase::stageDirectoryExists() breaks on PreCreate · bb204bd0
    Adam G-H authored
@@ -746,10 +746,9 @@ abstract class StageBase implements LoggerAwareInterface {
*/
public function stageDirectoryExists(): bool {
try {
$this->getStageDirectory();
return TRUE;
return is_dir($this->getStageDirectory());
}
catch (\LogicException $e) {
catch (\LogicException) {
return FALSE;
}
}
Loading