Release 1.1 #18

Merged
ryan merged 92 commits from 1.1 into main 2025-10-10 23:32:42 -04:00
Showing only changes of commit 9aa49c9c2c - Show all commits

View File

@@ -2,8 +2,8 @@
use App\Kernel;
if (preg_match("/js\/data\.json$/", $_SERVER['REQUEST_URI'])) {
print file_get_contents('js/data.json');
if (file_exists(__DIR__.$_SERVER['REQUEST_URI']) && is_readable(__DIR__.$_SERVER['REQUEST_URI']) && is_file(__DIR__.$_SERVER['REQUEST_URI'])) {
print file_get_contents(__DIR__.$_SERVER['REQUEST_URI']);
exit;
}