We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b51fc96 commit 9ab674bCopy full SHA for 9ab674b
app/bootstrap.php
@@ -27,14 +27,14 @@
27
exit(1);
28
}
29
30
+require_once __DIR__ . '/autoload.php';
31
+require_once BP . '/app/functions.php';
32
+
33
/* Custom umask value may be provided in optional mage_umask file in root */
34
$umaskFile = BP . '/magento_umask';
35
$mask = file_exists($umaskFile) ? octdec(file_get_contents($umaskFile)) : 002;
36
umask($mask);
37
-require_once __DIR__ . '/autoload.php';
-require_once BP . '/app/functions.php';
-
38
if (!empty($_SERVER['MAGE_PROFILER'])
39
&& isset($_SERVER['HTTP_ACCEPT'])
40
&& strpos($_SERVER['HTTP_ACCEPT'], 'text/html') !== false
0 commit comments