This repository has been archived on 2026-05-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2025-12-26 12:45:23 -08:00
|
|
|
<?php
|
|
|
|
|
// Block direct access to data directory
|
|
|
|
|
http_response_code(403);
|
|
|
|
|
header('Content-Type: text/plain');
|
|
|
|
|
die('Access Denied');
|