Skip to content

Commit 8a375a2

Browse files
committed
4.0.0-beta
1 parent 895bde7 commit 8a375a2

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.htaccess

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,18 @@ Options +FollowSymlinks -MultiViews -Indexes
99
<IfModule mod_headers.c>
1010
Header set Access-Control-Allow-Origin "*"
1111
Header set Access-Control-Allow-Methods "GET, POST, OPTIONS"
12-
Header set Access-Control-Allow-Headers "origin, content-type, accept"
12+
Header set Access-Control-Allow-Headers "origin, content-type, accept, x-requested-with"
1313
</IfModule>
1414

1515
# ----------------------------------------------------------------------
1616
# | Rewrite rules for api.phpmyfaq.de |
1717
# ----------------------------------------------------------------------
1818
<IfModule mod_rewrite.c>
1919
RewriteEngine On
20+
RewriteCond %{REQUEST_METHOD} OPTIONS
2021
RewriteBase /
2122

23+
RewriteRule ^(.*)$ $1 [R=200,L]
2224
RewriteRule versions /version.php
2325
RewriteRule version/stable /version.php?branch=stable
2426
RewriteRule version/development /version.php?branch=development

json/hashes-4.0.0-beta.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

phpmyfaq.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
const PHPMYFAQ_STABLE_VERSION = '3.2.9';
55
const PHPMYFAQ_STABLE_RELEASE = '2024-07-23';
6-
const PHPMYFAQ_DEV_VERSION = '4.0.0-alpha.4';
7-
const PHPMYFAQ_DEV_RELEASE = '2024-07-23';
6+
const PHPMYFAQ_DEV_VERSION = '4.0.0-beta';
7+
const PHPMYFAQ_DEV_RELEASE = '2024-09-01';

0 commit comments

Comments
 (0)