Browse Source

Fixed typo where interval was missing dollar sign.

mestato 15 years ago
parent
commit
442a75c16a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tripal_analysis/tripal_analysis.module

+ 1 - 1
tripal_analysis/tripal_analysis.module

@@ -835,7 +835,7 @@ function tripal_analysis_taxonify_features ($analysis_id = NULL, $job_id = NULL)
 	$interval = intval($count * 0.01);
 	foreach($ids as $feature_id){
 		// update the job status every 1% features
-		if($job_id and $i % interval == 0){
+		if($job_id and $i % $interval == 0){
 			tripal_job_set_progress($job_id,intval(($i/$count)*100));
 		}
 		$node = db_fetch_object(db_query($nsql,$feature_id));