Added __DIR__ to api.php
This commit is contained in:
parent
0059f5910f
commit
b727211f47
14
php/api.php
14
php/api.php
@ -19,13 +19,13 @@ if (!empty($_POST['function'])||!empty($_GET['function'])) {
|
|||||||
date_default_timezone_set('UTC');
|
date_default_timezone_set('UTC');
|
||||||
|
|
||||||
// Load autoload
|
// Load autoload
|
||||||
require('autoload.php');
|
require(__DIR__ . '/autoload.php');
|
||||||
|
|
||||||
// Load modules
|
// Load modules
|
||||||
require('modules/misc.php');
|
require(__DIR__ . '/modules/misc.php');
|
||||||
require('modules/upload.php');
|
require(__DIR__ . '/modules/upload.php');
|
||||||
|
|
||||||
if (file_exists('../data/config.php')) require('../data/config.php');
|
if (file_exists(__DIR__ . '/../data/config.php')) require(__DIR__ . '/../data/config.php');
|
||||||
else {
|
else {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -34,7 +34,7 @@ if (!empty($_POST['function'])||!empty($_GET['function'])) {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
define('LYCHEE_ACCESS_INSTALLATION', true);
|
define('LYCHEE_ACCESS_INSTALLATION', true);
|
||||||
require('access/installation.php');
|
require(__DIR__ . '/access/installation.php');
|
||||||
exit();
|
exit();
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -72,7 +72,7 @@ if (!empty($_POST['function'])||!empty($_GET['function'])) {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
define('LYCHEE_ACCESS_ADMIN', true);
|
define('LYCHEE_ACCESS_ADMIN', true);
|
||||||
require('access/admin.php');
|
require(__DIR__ . '/access/admin.php');
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ if (!empty($_POST['function'])||!empty($_GET['function'])) {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
define('LYCHEE_ACCESS_GUEST', true);
|
define('LYCHEE_ACCESS_GUEST', true);
|
||||||
require('access/guest.php');
|
require(__DIR__ . '/access/guest.php');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user