Fixing paths in global.php
That shouldn't be there... Thanks @theshka for spotting
This commit is contained in:
parent
c44afd396d
commit
df10d60846
1 changed files with 2 additions and 4 deletions
|
@ -1,11 +1,9 @@
|
|||
<?php
|
||||
define('HTTPDOCS', realpath(rtrim(__DIR__, '/')) . '/');
|
||||
define('ROOT_DIR', realpath(HTTPDOCS . '../httpdocs-includes') . '/');
|
||||
|
||||
define('ROOT_DIR', __DIR__ . '/');
|
||||
define('LIB_DIR', ROOT_DIR . 'lib/');
|
||||
define('VENDOR_DIR', ROOT_DIR . 'vendor/');
|
||||
define('PLUGINS_DIR', ROOT_DIR . 'plugins/');
|
||||
define('THEMES_DIR', HTTPDOCS . 'themes/');
|
||||
define('THEMES_DIR', ROOT_DIR . 'themes/');
|
||||
define('CONFIG_DIR', ROOT_DIR . 'config/');
|
||||
define('CACHE_DIR', LIB_DIR . 'cache/');
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue