Skip to content

Commit

Permalink
Fix some minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Sep 25, 2019
1 parent ca1328d commit 7ba57c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Expand Up @@ -6,6 +6,6 @@
/*/src/Resources/contao/languages/*/*.xlf merge=ours
/*/src/Resources/contao/languages/en/*.xlf merge=text

# Do not the minified theme files
# Do not merge the minified theme files
/*/src/Resources/contao/themes/flexible/*.min.css merge=ours
/*/src/Resources/contao/themes/flexible/*.min.js merge=ours
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Expand Up @@ -65,6 +65,7 @@
* Mathias Arzberger (MDevster)
* Defcon0
* Cédric Morin (Cerdic)
* Simon Reitinger (simonreitinger)
* Dominik Tomasi (dtomasi)
* Daniel Jahnsmüller
* Christian Eggeling
Expand Down
2 changes: 1 addition & 1 deletion manager-bundle/src/HttpKernel/ContaoKernel.php
Expand Up @@ -265,7 +265,7 @@ public static function fromRequest(string $projectDir, Request $request): HttpKe
$env = 'dev';
}

$_SERVER['APP_ENV'] = $env;
$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = $env;
}

$kernel = static::create($projectDir, $env);
Expand Down

0 comments on commit 7ba57c9

Please sign in to comment.