Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 70876e9

Browse files
committed
Merge branch '2.3' into 2.4
* 2.3: Fixed PHPUnit doc URL make htaccess deny in src and app work with apache 2.4
2 parents 1d2e912 + 16f4c18 commit 70876e9

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

app/.htaccess

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
deny from all
1+
<IfModule mod_authz_core.c>
2+
Require all denied
3+
</IfModule>
4+
<IfModule !mod_authz_core.c>
5+
Order deny,allow
6+
Deny from all
7+
</IfModule>

app/phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
3+
<!-- http://phpunit.de/manual/current/en/appendixes.configuration.html -->
44
<phpunit
55
backupGlobals = "false"
66
backupStaticAttributes = "false"

src/.htaccess

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
deny from all
1+
<IfModule mod_authz_core.c>
2+
Require all denied
3+
</IfModule>
4+
<IfModule !mod_authz_core.c>
5+
Order deny,allow
6+
Deny from all
7+
</IfModule>

0 commit comments

Comments
 (0)