home/abhiramc/public_html/newsroom/wp-includes/IXR/class-IXR-error.php 0000644 00000001526 15021155423 0021720 0 ustar 00 code = $code;
$this->message = htmlspecialchars($message);
}
/**
* PHP4 constructor.
*/
public function IXR_Error( $code, $message ) {
self::__construct( $code, $message );
}
function getXml()
{
$xml = <<
faultCode
{$this->code}
faultString
{$this->message}
EOD;
return $xml;
}
}
home/abhiramc/public_html/wp-includes/IXR/class-IXR-error.php 0000644 00000001526 15021201446 0020044 0 ustar 00 code = $code;
$this->message = htmlspecialchars($message);
}
/**
* PHP4 constructor.
*/
public function IXR_Error( $code, $message ) {
self::__construct( $code, $message );
}
function getXml()
{
$xml = <<
faultCode
{$this->code}
faultString
{$this->message}
EOD;
return $xml;
}
}