11 lines
281 B
PHP
11 lines
281 B
PHP
<?php
|
|
/**
|
|
* Legacy direct export endpoint (website Export page). Delegates to shared handler.
|
|
*/
|
|
require_once __DIR__ . '/../common.php';
|
|
require_once __DIR__ . '/../db_init.php';
|
|
|
|
$_SERVER['REQUEST_METHOD'] = 'GET';
|
|
$method = 'GET';
|
|
require __DIR__ . '/../handlers/export.php';
|