Typo, forgot the start.php version change

This commit is contained in:
DariusIII
2014-04-06 23:01:33 +02:00
parent 618d232281
commit cef2ec7eb2
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ if (!isset($argv[1])) {
$postprocess = new PostProcess(true);
if (isset($argv[1]) && $argv[1] === "additional") {
// Create the connection here and pass, this is for post processing
$nntp = new Nntp();
$nntp = new NNTP();
if ($nntp->doConnect() === false)
{
$c = new ColorCLI();
@@ -34,7 +34,7 @@ if (isset($argv[1]) && $argv[1] === "additional") {
} else if (isset($argv[1]) && $argv[1] === "nfo"){
if ( $site->lookupnfo == 1){
// Create the connection here and pass, this is for post processing
$nntp = new Nntp();
$nntp = new NNTP();
if ($nntp->doConnect() === false)
{
$c = new ColorCLI();
+1 -1
View File
@@ -3,7 +3,7 @@
/**
* Attempt to include PEAR's nntp class if it has not already been included.
*/
require_once ("Net_NNTP/NNTP/Client.php");
require_once ("/Net_NNTP/NNTP/Client.php");
require_once(WWW_DIR."/lib/Tmux.php");
require_once("ColorCLI.php");
require_once("Yenc.php");
+1 -1
View File
@@ -15,7 +15,7 @@ $tmux = $t->get();
$patch = (isset($tmux->sqlpatch)) ? $tmux->sqlpatch : 0;
// Check database patch version
if ($patch < 14) {
if ($patch < 16) {
exit($c->error("\nYour database is not up to date. Please update.\nphp ${DIR}/lib/DB/patchDB.php\n"));
}
$tmux_session = (isset($tmux->tmux_session)) ? $tmux->tmux_session : 0;