The QueryPath module library no longer includes itself on every page request but only when a module explicitly asks for it. See #1781878: QueryPath is not always needed in hook_boot for details.

From a quick review it looks like this module uses querypath. It would be great if you could review your use of QueryPath to ensure that it will work when the next version is released.

Thanks!

Comments

arpieb’s picture

Assigned: Unassigned » arpieb

Thanks for the heads-up! Any idea about the potential release date for the QP module that will introduce the code change? Just trying to schedule my time for updates and testing...

greggles’s picture

Yeah, I guess what you could do is:

if (function_exists('querypath_include_code')) {
  querypath_include_code()
}

That way your code will work even before querypath release is made.

In terms of release timing, I don't have a strong sense. I think the middle of November would be a good time for the QueryPath release.

arpieb’s picture

Status: Active » Closed (fixed)

Added load code snippet from #2 at the top of the two QP-driven methods used by all other functions in the module. Committed to 7.x-1.x branch at point 9f88dd0.