Closed (fixed)
Project:
Entity cache
Version:
7.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 May 2011 at 23:51 UTC
Updated:
16 Aug 2011 at 19:41 UTC
When I tried to uninstall entitycache after disabling it, I got the while screen of death. When I checked the error log, I see the following:
PHP Fatal error: Call to undefined function entitycache_supported_core_entities() in /Users/amodi/Sites/d7.redcat.org/sites/all/modules/entitycache/entitycache.install on line 12
Since the module is disabled, it does not have access to that function which is in the module. A simple workaround I had to this was to include entitycache.module before the function call: include_once('entitycache.module'); which resolved the issue.
Comments
Comment #1
catchThanks for the report, committed basically that fix for this.
Comment #3
threading_signals commentedI did not see the fix within entitycache.install module as op described. Please repatch and recommit, thank you.
Comment #4
geerlingguy commented@vividgates - are you running the latest -dev release? It should work with that release. 7.x-1.x is pretty dated.
Comment #5
threading_signals commentedI tried the fix that you mentioned as well, thanks.