From: Stephen Paul Weber Date: Wed, 14 Oct 2015 20:32:12 +0000 (-0500) Subject: Use the getter, not a direct access X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b43294ec6f81c44b156e865bf5e7bfc2b441bc7f;p=quix0rs-gnu-social.git Use the getter, not a direct access --- diff --git a/plugins/Linkback/LinkbackPlugin.php b/plugins/Linkback/LinkbackPlugin.php index 37c3ef8768..67e9dea7c6 100644 --- a/plugins/Linkback/LinkbackPlugin.php +++ b/plugins/Linkback/LinkbackPlugin.php @@ -120,7 +120,7 @@ class LinkbackPlugin extends Plugin function pingback($url, $endpoint) { - $args = array($this->notice->uri, $url); + $args = array($this->notice->getUrl(), $url); if (!extension_loaded('xmlrpc')) { if (!dl('xmlrpc.so')) {