Browse Source

Fixed bug in warning message in bulk loader

spficklin 12 years ago
parent
commit
7e8691af6a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tripal_bulk_loader/tripal_bulk_loader.loader.inc

+ 1 - 1
tripal_bulk_loader/tripal_bulk_loader.loader.inc

@@ -499,7 +499,7 @@ function process_data_array_for_line($priority, &$data, &$default_data, $addt) {
   $table_desc = tripal_core_get_chado_table_schema($table);
   if (!$table_desc) {
     watchdog('T_bulk_loader', "Failure: Tripal does not know about the table named %table. If this is a custom table, 
-      please define it first", array(), WATCHDOG_ERROR);
+      please define it first", array('%table' => $table), WATCHDOG_ERROR);
     $data[$priority]['error'] = TRUE;
     return;  
   }