| 121 |
/** |
/** |
| 122 |
* Implementation of hook_url_alter_outbound() from the url_alter module. |
* Implementation of hook_url_alter_outbound() from the url_alter module. |
| 123 |
*/ |
*/ |
| 124 |
function feedburner_url_alter_outbound(&$path, &$options, $original_path) { |
function feedburner_url_outbound_alter(&$path, &$options, $original_path) { |
| 125 |
static $feeds; |
static $feeds; |
| 126 |
|
|
| 127 |
if ($original_path == 'feedburner/url-rewrite-test') { |
if ($original_path == 'feedburner/url-rewrite-test') { |
| 165 |
*/ |
*/ |
| 166 |
if (!function_exists('custom_url_rewrite_outbound')) { |
if (!function_exists('custom_url_rewrite_outbound')) { |
| 167 |
function custom_url_rewrite_outbound(&$path, &$options, $original_path) { |
function custom_url_rewrite_outbound(&$path, &$options, $original_path) { |
| 168 |
feedburner_url_alter_outbound($path, $options, $original_path); |
feedburner_url_outbound_alter($path, $options, $original_path); |
| 169 |
} |
} |
| 170 |
} |
} |
| 171 |
|
|