View Single Post
  #6 (permalink)  
Old 06-30-2006, 12:22 AM
jalso jalso is offline
New Pligger
 
Join Date: Apr 2006
Location: Europe
Posts: 10
Thanks: 0
Thanked 4 Times in 2 Posts
Send a message via ICQ to jalso
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.
Attached Files
File Type: php trackback.php (4.6 KB, 54 views)
Reply With Quote