From: Mikael Nordfeldth Date: Wed, 17 Feb 2016 23:13:59 +0000 (+0100) Subject: NoAcctUriException->profile not $e directly X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=543d968b81b97c9ebd46de063d8d70621c12015b;p=quix0rs-gnu-social.git NoAcctUriException->profile not $e directly --- diff --git a/lib/toselector.php b/lib/toselector.php index f29451ad93..a295dcd8ab 100644 --- a/lib/toselector.php +++ b/lib/toselector.php @@ -108,7 +108,7 @@ class ToSelector extends Widget try { $choices[$value] = substr($users->getAcctUri(), 5) . " [{$users->getBestName()}]"; } catch (ProfileNoAcctUriException $e) { - $choices[$value] = "[?@?] " . $e->getBestName(); + $choices[$value] = "[?@?] " . $e->profile->getBestName(); } } @@ -118,7 +118,7 @@ class ToSelector extends Widget try { $choices[$value] = substr($this->to->getAcctUri(), 5) . " [{$this->to->getBestName()}]"; } catch (ProfileNoAcctUriException $e) { - $choices[$value] = "[?@?] " . $e->getBestName(); + $choices[$value] = "[?@?] " . $e->profile->getBestName(); } }