Browse Source

Fixed one typo in function naming

Stephen Ficklin 7 years ago
parent
commit
60c1677e79

+ 1 - 1
tripal_chado/api/modules/tripal_chado.feature.api.inc

@@ -804,7 +804,7 @@ function chado_get_location_string($featureloc) {
  *
  * @ingroup tripal_feature_api
  */
-function chado_tripal_get_feature_relationships($feature) {
+function chado_get_feature_relationships($feature) {
   // Expand the feature object to include the feature relationships.
   $options = array(
     'return_array' => 1,

+ 1 - 1
tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc

@@ -979,7 +979,7 @@ function tripal_get_location_string($featureloc) {
  * @ingroup tripal_chado_module_DEPRECATED_api
  */
 function tripal_get_feature_relationships($feature) {
-  chado_tripal_get_feature_relationships($feature);
+  chado_get_feature_relationships($feature);
 }
 
 /**