Closed (fixed)
Project:
Patch manager
Version:
6.x-1.0
Component:
Miscellaneous
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 May 2010 at 13:12 UTC
Updated:
7 Aug 2010 at 14:37 UTC
After upgrading to new version of FileField nodule (3.3) I get error:
Fatal error: Call to undefined function patch_manager_content_is_empty() in /path/to/drupal/sites/all/modules/cck/content.module on line 906
I get that error when I save node type with CCK fields.
Comments
Comment #1
aidanlis commentedThat's odd ... can you add this function to patchmanager.module and see if it solves the problem?
/**
* Implementation of hook_content_is_empty().
*/
patch_manager_content_is_empty($item, $field) {
if (empty($item['value']) && (string)$item['value'] !== '0') {
return TRUE;
}
return FALSE;
}
Comment #2
zarudnyi commentedYes, that work nice! Thank You a lot!
Comment #3
aidanlis commentedComment #4
aidanlis commented