瀏覽代碼

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;
    }