Skip to content

Commit

Permalink
Fix the Octopus profile options steps issues on Aiger.
Browse files Browse the repository at this point in the history
  • Loading branch information
heshanlk committed Apr 3, 2012
1 parent 80d0821 commit 9d83d7b
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions octopus_video.profile
Expand Up @@ -4,14 +4,17 @@
* Implements hook_install_tasks().
*/
function octopus_video_install_tasks($install_state) {
$tasks['create_categories_form'] = array(
'display_name' => st('Set up categories'),
'type' => 'form'
);
$tasks['configure_zencoder_form'] = array(
'display_name' => st('Configure Zencoder'),
'type' => 'form',
);
$tasks = array();
if (!defined('DRUSH_BASE_PATH')) {
$tasks['create_categories_form'] = array(
'display_name' => st('Set up categories'),
'type' => 'form'
);
$tasks['configure_zencoder_form'] = array(
'display_name' => st('Configure Zencoder'),
'type' => 'form',
);
}
return $tasks;
}

Expand Down

0 comments on commit 9d83d7b

Please sign in to comment.