Browse Source

Fixed one more bug with missing feature browser

spficklin 14 years ago
parent
commit
5096c81f20
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tripal_feature/tripal_feature.module

+ 1 - 1
tripal_feature/tripal_feature.module

@@ -1220,7 +1220,7 @@ function tripal_feature_load_featureloc_sequences($feature_id,$featurelocs){
 function tripal_feature_load_organism_feature_browser($organism){
 
    // don't show the browser if the settings in the admin page is turned off
-   $show_browser = variable_get('tripal_feature_browse_setting',array('show_feature_browser'));
+   $show_browser = variable_get('tripal_feature_browse_setting','show_feature_browser');
    if(strcmp($show_browser,'show_feature_browser')!=0){
       return array ('enabled' => $show_browser );
    }