Show
Ignore:
Timestamp:
07/20/08 04:56:10 (4 months ago)
Author:
rickc
Message:

Changed instance of 'content_out' and 'title_out' to 'content' and 'title' respectively. The out versions of the properties aren't defined in the Post class.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/metaweblog/trunk/metaweblog.plugin.php

    r94 r689  
    88        return array( 
    99            'name' => 'metaWeblog', 
    10             'version' => '0.8.3', 
     10            'version' => '0.8.4', 
    1111            'url' => 'http://habariproject.org/', 
    1212            'author' => 'Habari Community', 
     
    6060 
    6161        $struct->dateCreated= date( 'c', strtotime( $post->pubdate ) ); 
    62         $struct->description= $post->content_out; 
    63         $struct->title= $post->title_out; 
     62        $struct->description= $post->content; 
     63        $struct->title= $post->title; 
    6464        $struct->link= $post->permalink; 
    6565        $struct->categories= $post->tags; 
     
    8282            $struct= new XMLRPCStruct(); 
    8383            $struct->dateCreated= date( 'c', strtotime( $post->pubdate ) ); 
    84             $struct->description= $post->content_out; 
    85             $struct->title= $post->title_out; 
     84            $struct->description= $post->content; 
     85            $struct->title= $post->title; 
    8686            $struct->link= $post->permalink; 
    8787            $struct->categories= $post->tags;