Explorar el Código

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

Lacey Sanderson hace 12 años
padre
commit
d502001c0d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
 
 }