Remove option to set covers path in database, it is hardcoded now to resources/covers/

This commit is contained in:
DariusIII
2020-03-22 22:12:07 +01:00
parent 948658bf1d
commit 1e7244e5bc
40 changed files with 55 additions and 151 deletions
+3 -3
View File
@@ -26,9 +26,9 @@ try {
echo $e;
}
$runVar['paths']['misc'] = NN_MISC;
$runVar['paths']['cli'] = NN_ROOT.'cli/';
$runVar['paths']['scraper'] = NN_MISC.'IRCScraper'.DS.'scrape.php';
$runVar['paths']['misc'] = base_path().'/misc/';
$runVar['paths']['cli'] = base_path().'/cli/';
$runVar['paths']['scraper'] = base_path().'/misc/IRCScraper/scrape.php';
$db_name = config('nntmux.db_name');