Bug fixes

This commit is contained in:
2011-04-22 00:26:30 +01:00
parent d3fe08d40f
commit edc717ef68
6 changed files with 15 additions and 36 deletions

View File

@@ -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 {