We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 503cc29 commit 5069903Copy full SHA for 5069903
resources/lib/UnityUser.php
@@ -101,14 +101,14 @@ public function init($send_mail = true)
101
//
102
// add to org group
103
104
- $orgEntry = $this->getOrgGroup();
+ $org = $this->getOrgGroup();
105
// create organization if it doesn't exist
106
- if (!$orgEntry->exists()) {
107
- $orgEntry->init();
+ if (!$org->exists()) {
+ $org->init();
108
}
109
110
- if (!$orgEntry->inOrg($this)) {
111
- $orgEntry->addUser($this);
+ if (!$org->inOrg($this)) {
+ $org->addUser($this);
112
113
114
// add to user group as well as user OU
0 commit comments