ソースを参照

Temporary fix for populating the feature type drop down when editing a feature. It wasn't getting populated.

spficklin 13 年 前
コミット
27a3268743
1 ファイル変更1 行追加1 行削除
  1. 1 1
      tripal_feature/tripal_feature.module

+ 1 - 1
tripal_feature/tripal_feature.module

@@ -778,7 +778,7 @@ function chado_feature_form ($node,$param){
    // get the list of supported feature types
    $ftypes = array();
    $ftypes[''] = '';
-   $supported_ftypes = split("[ \n]",variable_get('chado_feature_types','EST contig'));
+   $supported_ftypes = split("[ \n]",variable_get('chado_browser_feature_types','gene mRNA EST contig'));
    foreach($supported_ftypes as $ftype){
       $ftypes["$ftype"] = $ftype;
    }