Skip to content
Snippets Groups Projects
Commit c8d37915 authored by Ken Rickard's avatar Ken Rickard
Browse files

-- Doxygen cleanup. Upgrades patches to Drupal 5.18.

-- #450344 backport to D5 branch.
parent 6608f43b
No related branches found
Tags 5.x-1.10
No related merge requests found
......@@ -2,7 +2,8 @@
31-MAY-2009
-- Doxygen cleanup. Upgrades patches to Drupal 5.18.
-- Doxygen cleanup. Upgrades patches to Drupal 5.18.
-- #450344 backport to D5 branch.
07-APR-2009
......
......@@ -4,7 +4,7 @@
/**
* @file
* Includde file for settings.php to provide advanced
* Include file for settings.php to provide advanced
* functionality for rewriting links as needed.
*
* @ingroup domain
......@@ -12,9 +12,17 @@
/**
* Implement custom_url_rewrite_outbound().
*/
if (!function_exists('custom_url_rewrite_outbound')) {
function custom_url_rewrite_outbound(&$path, &$query, &$fragment, &$absolute, &$base_url, $original_path) {
domain_url_rewrite_outbound($path, $query, $fragment, $absolute, $base_url, $original_path);
}
}
/**
* Forces absolute paths for domains when needed.
*/
function custom_url_rewrite_outbound(&$path, &$query, &$fragment, &$absolute, &$base_url, $original_path) {
function domain_url_rewrite_outbound(&$path, &$query, &$fragment, &$absolute, &$base_url, $original_path) {
global $_domain;
// If the domain_id is not set, then the Domain module is not active, and we cannot run this function.
if (isset($_domain['domain_id'])) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment