Active
Project:
FeedBurner
Version:
6.x-1.0-beta4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Sep 2010 at 19:15 UTC
Updated:
26 Sep 2010 at 19:15 UTC
see bug http://drupal.org/node/921686
the feedburner module makes implicit calls to url_alter before implementations of url_alter are loaded:
/**
* Implementation of hook_boot().
*/
function feedburner_boot() {
drupal_bootstrap(DRUPAL_BOOTSTRAP_PATH);
$path = _feedburner_get_path_segment();
feedburner_check_redirect($path);
}
this breaks implementations that use url_alter.
Gerd