Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gravity-forms/gw-update-posts.php
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ function acf_get_field_object_by_name( $field_name, $group_name = false ) {
*/
public function return_ids_instead_of_names( $value, $field, $template_name, $populate, $object, $object_type, $objects, $template ) {
// Check if this is for the specific form we want.
if ( $field->formId != $this->_args['form_id'] ) {
if ( rgar( $field, 'formId' ) != $this->_args['form_id'] ) {
return $value;
}

Expand Down
Loading