fixed call-by-reference warning

This commit is contained in:
Roland Gruber 2005-09-04 12:49:26 +00:00
parent abcd141a87
commit 9dc9ef5f27
1 changed files with 1 additions and 1 deletions

View File

@ -1691,7 +1691,7 @@ class accountContainer {
$this->attributes_orig = $_SESSION['ldap']->encrypt(serialize($this->attributes_orig));
$this->module = $_SESSION['ldap']->encrypt(serialize($this->module));
// save all attributes
return array_keys(get_object_vars(&$this));
return array_keys(get_object_vars($this));
}
/**