Skip to content

Commit

Permalink
Removing reference operators in the AclComponent.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed May 23, 2010
1 parent 1c36c1f commit b73870c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cake/libs/controller/components/acl.php
Expand Up @@ -262,8 +262,8 @@ function __construct() {
if (!class_exists('AclNode')) {
require LIBS . 'model' . DS . 'db_acl.php';
}
$this->Aro =& ClassRegistry::init(array('class' => 'Aro', 'alias' => 'Aro'));
$this->Aco =& ClassRegistry::init(array('class' => 'Aco', 'alias' => 'Aco'));
$this->Aro = ClassRegistry::init(array('class' => 'Aro', 'alias' => 'Aro'));
$this->Aco = ClassRegistry::init(array('class' => 'Aco', 'alias' => 'Aco'));
}

/**
Expand Down

0 comments on commit b73870c

Please sign in to comment.