Explorar el Código

Fixed bug on feature sync page

spficklin hace 12 años
padre
commit
5175db48d1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tripal_feature/includes/syncFeatures.inc

+ 1 - 1
tripal_feature/includes/syncFeatures.inc

@@ -239,7 +239,7 @@ function tripal_feature_sync_features($max_sync = 0, $organism_id = NULL,
 
   // Iterate through features that need to be synced
   $interval = intval($count * 0.01);
-  if ($interval > 1) {
+  if ($interval < 1) {
     $interval = 1;
   }
   $num_ids = sizeof($ids);