소스 검색

Fixed one typo in function naming

Stephen Ficklin 7 년 전
부모
커밋
60c1677e79
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      tripal_chado/api/modules/tripal_chado.feature.api.inc
  2. 1 1
      tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc

+ 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);
 }
 
 /**