Closed (fixed)
Project:
Finder
Version:
6.x-1.0-beta1
Component:
Finder Autocomplete
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
3 Jun 2009 at 14:27 UTC
Updated:
9 Oct 2011 at 20:36 UTC
The autocomplete field doesn't seem to work when the devel modules are turned on...
More importantly, when you "disable devel modules" the next page load (and every subsequent one) throws this error to the screen:
Call to undefined function devel_themer_catch_function() in C:\**sitepath**\sites\all\modules\finder\modules\finder_autocomplete\finder_autocomplete.module on line 277
I got rid of the error one time, but to be honest I don't know how I did...
I think the problem is with this (from finder_autocomplete.module):
/**
* Implementation of hook_theme_registry_alter().
*/
function finder_autocomplete_theme_registry_alter(&$theme_registry) {
$theme_textfield = $theme_registry['textfield']['function'];
if ($theme_textfield != 'theme_textfield') {
variable_set('finder_autocomplete_textfield_theme', $theme_textfield);
}
$theme_registry['textfield']['function'] = $theme_registry['finder_autocomplete_textfield']['function'];
}
Comments
Comment #1
gmclelland commentedI'm having the same problem.
Comment #2
danielb commentedCan you just rebuild your cache under 'performance'?
Comment #3
gmclelland commentedDidn't work for me.
Comment #4
techczech commentedSame problem here
Comment #5
techczech commentedI've narrowed it down to the themer module. I've cleared all the cache tables and nothing happened. Reenabling the themer module was the only way to fix the problem. But then of course, the finder autocomplete doesn't work.
Comment #6
danielb commentedI think I understand the problem, the fix would be to remove the
if ($theme_textfield != 'theme_textfield') {and corresponding closing brace - then disable the devel/themer module.Comment #7
danielb commentedI might actually be able to get around this whole nonsense using #theme
Comment #8
techczech commentedthanks, that fixed the issue
Comment #9
Flying Drupalist commentedSame here.
Comment #10
gmclelland commentedchange - works for me.
Comment #11
danielb commentedThis has been changed in beta2
Comment #13
argentin commentedSame here