Hello to everyone,

i got a bug...the bug doesnt appear only if i enable the Module "Jquery update".

I got following Error-Message at the "Status-Report-Page" from Drupal

"Theme hook is not in the correct place."

I got following Versions activated:

Modules:
- jQuery UI 6.x-1.5 - 2011-Jun-17
- jQuery Update 6.x-2.0-alpha1 t2010-Apr-23

Including following Versions:
jQuery UI 1.7.3
jQuery Update 1.3.2

When i disable "jQuery update" then the Error-Message is gone.

What is wrong with that?

PLease anybody help me out of this error.

Thanks in advance and thanks a lot for this super modul !!!

Comments

aze2010’s picture

Attach:

Hook Theme Info:

_rules_action_drupal_goto_handler
template_preprocess
template_preprocess_page
authcache_preprocess
authcache_preprocess_page
mobile_tools_preprocess_page
page_title_preprocess_page
ajax_thickbox_preprocess_page
apachesolr_ajax_preprocess_page
nodewords_preprocess_page
ajax_preprocess_page
css_emimage_preprocess_page
fusion_core_preprocess_page
content_profile_template_preprocess
ctools_preprocess_page
advagg_processor
conditional_styles_preprocess_page
jquery_update_preprocess_page

aze2010’s picture

Title: Theme hook is not in the correct place. » [solved] Theme hook is not in the correct place.

Ok guys..i got the Solution!!!

I set the WEIGHT of the Module "Jquery update" from 10000 to 0.

Now it works!

Many Greetings

aze2010’s picture

Status: Active » Closed (fixed)
mikeytown2’s picture

jquery_update should have a weight of 99
http://drupalcode.org/project/jquery_update.git/blob/refs/heads/6.x-2.x:...

/**
 * Implementation of hook_install().
 */
function jquery_update_install() {
  // Set the module's weight high so that it runs after other modules.
  db_query("UPDATE {system} SET weight = 99 WHERE name = 'jquery_update' and type = 'module'");
}
mikeytown2’s picture

Category: bug » support