Show
Ignore:
Timestamp:
09/03/07 23:32:58 (1 year ago)
Author:
ryan
Message:

Remove trailing whitespace

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/class-IXR.php

    r5700 r6026  
    11<?php 
    2 /*  
     2/* 
    33   IXR - The Inutio XML-RPC Library - (c) Incutio Ltd 2002-2005 
    44   Version 1.7 (beta) - Simon Willison, 23rd May 2005 
     
    255255        } 
    256256        $this->_currentTagContents = ''; 
    257     }        
     257    } 
    258258} 
    259259 
     
    380380                'specVersion' => 1 
    381381            ), 
    382         );    
     382        ); 
    383383    } 
    384384    function getCapabilities($args) { 
     
    585585    </value> 
    586586  </fault> 
    587 </methodResponse>  
     587</methodResponse> 
    588588 
    589589EOD; 
     
    659659        ); 
    660660        $this->addCallback( 
    661             'system.methodSignature',  
    662             'this:methodSignature',  
    663             array('array', 'string'),  
     661            'system.methodSignature', 
     662            'this:methodSignature', 
     663            array('array', 'string'), 
    664664            'Returns an array describing the return type and required parameters of a method' 
    665665        ); 
    666666        $this->addCallback( 
    667             'system.getCapabilities',  
    668             'this:getCapabilities',  
    669             array('struct'),  
     667            'system.getCapabilities', 
     668            'this:getCapabilities', 
     669            array('struct'), 
    670670            'Returns a struct describing the XML-RPC specifications supported by this server' 
    671671        ); 
    672672        $this->addCallback( 
    673             'system.listMethods',  
    674             'this:listMethods',  
    675             array('array'),  
     673            'system.listMethods', 
     674            'this:listMethods', 
     675            array('array'), 
    676676            'Returns an array of available methods on this server' 
    677677        ); 
    678678        $this->addCallback( 
    679             'system.methodHelp',  
    680             'this:methodHelp',  
    681             array('string', 'string'),  
     679            'system.methodHelp', 
     680            'this:methodHelp', 
     681            array('string', 'string'), 
    682682            'Returns a documentation string for the specified method' 
    683683        );