We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d67ef82 commit 8a0fb78Copy full SHA for 8a0fb78
index.php
@@ -58,8 +58,10 @@
58
</div>
59
<?php endif; ?>
60
<?php
61
+$privateStageStart = PathUtility::getAbsolutePath('private/components/stage.start.php');
62
+$stageStart = PathUtility::getAbsolutePath('template/components/stage.start.php');
63
-include PathUtility::getAbsolutePath('template/components/stage.start.php');
64
+include file_exists($privateStageStart) ? $privateStageStart : $stageStart;
65
if (!$config['ui']['selfie_mode']) {
66
include PathUtility::getAbsolutePath('template/components/stage.loader.php');
67
include PathUtility::getAbsolutePath('template/components/stage.results.php');
0 commit comments