You are here

function _feed_import_base_compare_other_fields in Feed Import 8

Same name and namespace in other branches
  1. 7.3 feed_import_base/feed_import_base.module \_feed_import_base_compare_other_fields()

Field compare any.

Parameters

array $new New field data:

array $current Current field data:

Return value

bool True if they are the same

File

feed_import_base/feed_import_base.module, line 619
Basic settings for feed import base module

Code

function _feed_import_base_compare_other_fields(&$new, &$current) {
  return !array_diff_assoc($new, $current);
}