Skip to content

Commit

Permalink
Fix module name for PHP8+
Browse files Browse the repository at this point in the history
  • Loading branch information
solracsf authored and nickvergessen committed Aug 20, 2021
1 parent 2303eeb commit 3ee82e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
</FilesMatch>
</IfModule>

# PHP 7.x
<IfModule mod_php7.c>
php_value mbstring.func_overload 0
php_value default_charset 'UTF-8'
Expand All @@ -62,7 +63,8 @@
</IfModule>
</IfModule>

<IfModule mod_php8.c>
# PHP 8+
<IfModule mod_php.c>
php_value mbstring.func_overload 0
php_value default_charset 'UTF-8'
php_value output_buffering 0
Expand Down

0 comments on commit 3ee82e4

Please sign in to comment.