X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fpeopletagautocomplete.php;h=5b6ae57a5393229126f5634e1994709021a1ada1;hb=8e501584b4537750fbd0ca3954e1426b723d5dad;hp=d4ecb34e4fd6d5809429683336296317d5c36c36;hpb=f0d762f1968fa0ac33b39d73cc9c0225c9e8a989;p=quix0rs-gnu-social.git diff --git a/actions/peopletagautocomplete.php b/actions/peopletagautocomplete.php index d4ecb34e4f..5b6ae57a53 100644 --- a/actions/peopletagautocomplete.php +++ b/actions/peopletagautocomplete.php @@ -70,7 +70,7 @@ class PeopletagautocompleteAction extends Action } $profile = $this->user->getProfile(); - $tags = $profile->getOwnedTags(common_current_user()); + $tags = $profile->getLists(common_current_user()); $this->tags = array(); while ($tags->fetch()) { @@ -88,7 +88,7 @@ class PeopletagautocompleteAction extends Action $this->tags[] = $arr; } - $tags->free(); + $tags = NULL; return true; }