Use the getter, not a direct access

This commit is contained in:
Stephen Paul Weber 2015-10-14 15:32:12 -05:00
parent a4a37d6fc9
commit b43294ec6f
1 changed files with 1 additions and 1 deletions

View File

@ -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')) {