function boost_drupal_goto_alter in Boost 7
Implements hook_drupal_goto_alter().
File
- ./
boost.module, line 292 - Caches generated output as a static file to be served directly from the webserver.
Code
function boost_drupal_goto_alter(&$path, &$options, &$http_response_code) {
global $_boost;
// Bypass caching on redirects (issue #1176534).
$_boost['is_cacheable'] = FALSE;
}