Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix module name for PHP8+
  • Loading branch information
solracsf authored and backportbot[bot] committed Sep 14, 2021
commit 11395b457458e6f8511d2dccc25470518a22715e
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