Преглед изворни кода

Small fix to drush re-run command to take into account the function name changes

Lacey Sanderson пре 12 година
родитељ
комит
d502001c0d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      tripal_core/tripal_core.drush.inc

+ 1 - 1
tripal_core/tripal_core.drush.inc

@@ -208,7 +208,7 @@ function drush_tripal_core_tripal_jobs_launch($username) {
 function drush_tripal_core_tripal_jobs_rerun($username, $job_id) {
 
   $new_job_id = tripal_jobs_rerun($job_id, FALSE);
-  drush_tripal_core_tripal_launch_jobs($username, $new_job_id);
+  drush_tripal_core_tripal_jobs_launch($username, $new_job_id);
 
 }