12 lines
181 B
PHP
12 lines
181 B
PHP
|
<?php
|
||
|
|
||
|
error_reporting(0);
|
||
|
|
||
|
$skip_permissions = true;
|
||
|
include_once __DIR__.'/../core.php';
|
||
|
|
||
|
$info = Update::getDatabaseStructure();
|
||
|
$response = json_encode($info);
|
||
|
|
||
|
echo $response;
|