Bug fixes
This commit is contained in:
@@ -4,7 +4,7 @@ require_once '../private/config.php';
|
||||
require_once(SihnonFramework_Lib . 'SihnonFramework/Main.class.php');
|
||||
//require_once RippingCluster_Lib . 'RippingCluster/Main.class.php';
|
||||
|
||||
SihnonFramework_Main::registerAutoloadClasses('Sihnon', SihnonFramework_Lib,
|
||||
SihnonFramework_Main::registerAutoloadClasses('SihnonFramework', SihnonFramework_Lib,
|
||||
'RippingCluster', SihnonFramework_Main::makeAbsolutePath('../source/lib/'));
|
||||
|
||||
?>
|
||||
|
||||
@@ -6,8 +6,8 @@ require_once '../private/config.php';
|
||||
require_once(SihnonFramework_Lib . 'SihnonFramework/Main.class.php');
|
||||
require_once 'Net/Gearman/Client.php';
|
||||
|
||||
SihnonFramework_Main::registerAutoloadClasses('Sihnon', SihnonFramework_Lib,
|
||||
'RippingCluster', SihnonFramework_Main::makeAbsolutePath('../lib/'));
|
||||
SihnonFramework_Main::registerAutoloadClasses('SihnonFramework', SihnonFramework_Lib,
|
||||
'RippingCluster', SihnonFramework_Main::makeAbsolutePath('../source/lib/'));
|
||||
|
||||
try {
|
||||
$main = RippingCluster_Main::instance();
|
||||
|
||||
@@ -6,7 +6,7 @@ $config = $main->config();
|
||||
|
||||
// Grab the name of this source
|
||||
$encoded_filename = null;
|
||||
if ($req->get('submit')) {
|
||||
if ($req->exists('submit')) {
|
||||
$encoded_filename = RippingCluster_Main::issetelse($_POST['id'], 'RippingCluster_Exception_InvalidParameters');
|
||||
|
||||
// Create the jobs from the request
|
||||
@@ -17,7 +17,7 @@ if ($req->get('submit')) {
|
||||
|
||||
RippingCluster_Page::redirect('rips/setup-rip/queued');
|
||||
|
||||
} elseif ($req->get('queued')) {
|
||||
} elseif ($req->exists('queued')) {
|
||||
$this->smarty->assign('rips_submitted', true);
|
||||
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user