소스 검색

Just some reformatting of lines is all

Stephen Ficklin 12 년 전
부모
커밋
232ac24224
1개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 5
      tripal_core/api/tripal_core.api.inc

+ 1 - 5
tripal_core/api/tripal_core.api.inc

@@ -1944,11 +1944,7 @@ function tripal_core_expand_chado_vars($object, $type, $to_expand, $table_option
           //We need to recurse -the field is in a nested object
           foreach ((array) $object as $field_name => $field_value) {
             if (is_object($field_value)) {
-              $object->{$field_name} = tripal_core_expand_chado_vars(
-              $field_value,
-                'field',
-              $to_expand
-              );
+              $object->{$field_name} = tripal_core_expand_chado_vars($field_value, 'field', $to_expand);
             }
           } //end of for each field in the current object
         }