]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Use the getter, not a direct access
authorStephen Paul Weber <singpolyma@singpolyma.net>
Wed, 14 Oct 2015 20:32:12 +0000 (15:32 -0500)
committerStephen Paul Weber <singpolyma@singpolyma.net>
Wed, 14 Oct 2015 20:33:48 +0000 (15:33 -0500)
plugins/Linkback/LinkbackPlugin.php

index 37c3ef8768a23ce00447e0e68ec9dc6376d42616..67e9dea7c66f64520cf095cf836e627aec56db06 100644 (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')) {