Browse Source

Fixed a type

Chun-Huai Cheng 7 years ago
parent
commit
899c0f31a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      legacy/tripal_core/api/tripal_core.chado_nodes.api.inc

+ 1 - 1
legacy/tripal_core/api/tripal_core.chado_nodes.api.inc

@@ -881,7 +881,7 @@ function chado_node_sync_records($base_table, $max_sync = FALSE,
   if ($where) {
     $query .= $where;
   }
-  $query .- " ORDER BY " . $base_table_id;
+  $query .= " ORDER BY " . $base_table_id;
 
   // If Maximum number to Sync is supplied
   if ($max_sync) {