1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/sources/application/libraries/LSZend_XmlRpc_Response_Http.php

22 lines
No EOL
570 B
PHP

<?php
Yii::import('application.libraries.BigData', true);
class LSZend_XmlRpc_Response_Http extends Zend_XmlRpc_Response_Http
{
// Output content in $this->_return.
public function printXml()
{
echo '<methodResponse>';
echo '<params>';
echo '<param>';
echo '<value>';
BigData::xmlrpc_echo($this->_return);
echo '</value>';
echo '</param>';
echo '</params>';
echo '</methodResponse>';
}
}
?>