Navigation Menu

Skip to content
This repository has been archived by the owner on Nov 26, 2017. It is now read-only.

Commit

Permalink
Merge pull request #949 from LouisLandry/unit_test_fix
Browse files Browse the repository at this point in the history
Fixing up the unit tests.
  • Loading branch information
pasamio committed Mar 2, 2012
2 parents d20bf66 + 89ad327 commit 409e73e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/joomla/application/router.php
Expand Up @@ -403,7 +403,7 @@ protected function _processParseRules($uri)

foreach ($this->_rules['parse'] as $rule)
{
$vars += call_user_func_array($rule, array($this, $uri));
$vars += call_user_func_array($rule, array(&$this, &$uri));
}

return $vars;
Expand All @@ -422,7 +422,7 @@ protected function _processBuildRules($uri)
{
foreach ($this->_rules['build'] as $rule)
{
call_user_func_array($rule, array($this, $uri));
call_user_func_array($rule, array(&$this, &$uri));
}
}

Expand Down

0 comments on commit 409e73e

Please sign in to comment.