made some class variables public
This commit is contained in:
parent
23264c0d3c
commit
2e816e5425
|
@ -933,7 +933,7 @@ class accountContainer {
|
||||||
* Array of all used attributes
|
* Array of all used attributes
|
||||||
* Syntax is attribute => array ( objectClass => MUST or MAY, ...)
|
* Syntax is attribute => array ( objectClass => MUST or MAY, ...)
|
||||||
*/
|
*/
|
||||||
var $attributes;
|
public $attributes;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This variale stores the account type.
|
* This variale stores the account type.
|
||||||
|
@ -945,19 +945,19 @@ class accountContainer {
|
||||||
private $module;
|
private $module;
|
||||||
|
|
||||||
/** DN suffix of the account */
|
/** DN suffix of the account */
|
||||||
var $dn;
|
public $dn;
|
||||||
|
|
||||||
/** DN suffix of account when it was loaded */
|
/** DN suffix of account when it was loaded */
|
||||||
var $dn_orig;
|
public $dn_orig;
|
||||||
|
|
||||||
/** RDN attribute of this account */
|
/** RDN attribute of this account */
|
||||||
var $rdn;
|
public $rdn;
|
||||||
|
|
||||||
/** DN of saved account */
|
/** DN of saved account */
|
||||||
public $finalDN;
|
public $finalDN;
|
||||||
|
|
||||||
/** original LDAP attributes when account was loaded from LDAP */
|
/** original LDAP attributes when account was loaded from LDAP */
|
||||||
var $attributes_orig;
|
public $attributes_orig;
|
||||||
|
|
||||||
/** Module order */
|
/** Module order */
|
||||||
private $order;
|
private $order;
|
||||||
|
|
Loading…
Reference in New Issue