forked from leftypol/leftypol
less warnings in CLI mode
This commit is contained in:
parent
c8d1f1cdd4
commit
e09dd8782e
2 changed files with 26 additions and 19 deletions
|
@ -635,7 +635,10 @@
|
|||
|
||||
// The root directory, including the trailing slash, for Tinyboard.
|
||||
// examples: '/', 'http://boards.chan.org/', '/chan/'
|
||||
$config['root'] = (str_replace('\\', '/', dirname($_SERVER['REQUEST_URI'])) == '/' ? '/' : str_replace('\\', '/', dirname($_SERVER['REQUEST_URI'])) . '/');
|
||||
if(isset($_SERVER['REQUEST_URI']))
|
||||
$config['root'] = (str_replace('\\', '/', dirname($_SERVER['REQUEST_URI'])) == '/' ? '/' : str_replace('\\', '/', dirname($_SERVER['REQUEST_URI'])) . '/');
|
||||
else
|
||||
$config['root'] = '/'; // CLI mode
|
||||
|
||||
// If for some reason the folders and static HTML index files aren't in the current working direcotry,
|
||||
// enter the directory path here. Otherwise, keep it false.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue