Skip to content

Commit

Permalink
Fixed issue #11541: User created by shows user name
Browse files Browse the repository at this point in the history
  • Loading branch information
markusfluer committed Aug 12, 2016
1 parent 52c317e commit 3be02db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/User.php
Expand Up @@ -110,7 +110,7 @@ function parentAndUser($postuserid)
}
public function getParentUser(){
$parent_user = $this->parentAndUser( $this->uid );
return $parent_user['full_name'];
return $parent_user['parent'];
}

public function getSurveysCreated(){
Expand Down

0 comments on commit 3be02db

Please sign in to comment.