Browse Source

Made maxlength of file size in bulk loader larger

Stephen P Ficklin 12 years ago
parent
commit
f66f5aaaf9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tripal_bulk_loader/tripal_bulk_loader.module

+ 2 - 1
tripal_bulk_loader/tripal_bulk_loader.module

@@ -295,7 +295,8 @@ function tripal_bulk_loader_form($node, $form_state) {
     '#title'         => t('Data File'),
     '#title'         => t('Data File'),
     '#description'   => t('Please specify the data file to be loaded. This must be a tab-delimited text file with UNIX line endings.'),
     '#description'   => t('Please specify the data file to be loaded. This must be a tab-delimited text file with UNIX line endings.'),
     '#weight'        => -8,
     '#weight'        => -8,
-    '#default_value' => $node->file
+    '#default_value' => $node->file,
+    '#maxlength'     => 1024,
   );
   );
 
 
   $form['loader']['has_header'] = array(
   $form['loader']['has_header'] = array(