Small bug, just needs a slight change in boost.module, line 1260.
if (($result = module_invoke($module, $path, $data)) != NULL) {
should be
if (($result = module_invoke($module, 'boost_preprocess', $path, $data)) != NULL) {
While I'm here, great module! Thanks for your efforts.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | boost-575250.patch | 734 bytes | mikeytown2 |
Comments
Comment #1
mikeytown2 commentedComment #2
dbeall commentedany words on what is effected by this
Comment #3
mikeytown2 commentedYou can run a custom function on the html output, then this can effect you. Most people never do (including me). It's been in since 4.7 if I remember correctly.
admin/settings/performance/boost
Boost advanced settings
Pre-process function:
It's what I'm looking to do as it's own module; with extras of course.
http://groups.drupal.org/node/25971
Comment #4
dbeall commentedThank You, understand completely, have looked at that many times. I can think of a few functions in theory, but nothing I need.
Comment #5
mikeytown2 commentedcommitted