Added fix android, fix core, fix prodji and remove blacklist releases

Some scripts addedd some removed, some re-added and tmux reorganized
This commit is contained in:
Darko
2013-06-13 14:51:48 +02:00
parent 09e86ec6ac
commit 98e13b0e44
7 changed files with 130 additions and 22 deletions
+10 -4
View File
@@ -1,10 +1,16 @@
<?php
if( !defined('FS_ROOT') )
{
throw new Exception("Error: FS_ROOT must be defined");
die();
}
// Load the config
require_once(dirname(__FILE__)."/../../bin/config.php");
require_once(FS_ROOT ."/../../www/config.php");
// Require the commandline options script
require_once("Getopt.php");
require_once(FS_ROOT ."/lib/Getopt.php");
// Require the newznab site script
require_once(WWW_DIR."lib/site.php");
@@ -181,7 +187,7 @@ abstract class NNScripts
);
// Try to read the ini file
$settingsFile = "settings.ini";
$settingsFile = FS_ROOT ."/settings.ini";
$iniArray = $this->parseIniFile( $settingsFile, true );
// Parse the "global" settings
@@ -588,4 +594,4 @@ abstract class NNScripts
if( true === $show )
$this->display( PHP_EOL );
}
}
}