in file libs/trackback.php
find this part:
PHP Code:
// Send a Trackback
function send() {
if (empty($this->url))
return;
$title = urlencode($this->title);
$excerpt = urlencode($this->content);
$blog_name = urlencode($trackbackURL);
.
.
.
and change to:
PHP Code:
// Send a Trackback
function send() {
global $trackbackURL;
if (empty($this->url))
return;
$title = urlencode($this->title);
$excerpt = urlencode($this->content);
$blog_name = urlencode($trackbackURL);
.
.
.
or save attached trackback.php, and copy to your libs subdir.