/[cvs]/nfo/php/libs/org.netfrag.glib/DataSource/Proxy/XMLRPC.php
ViewVC logotype

Diff of /nfo/php/libs/org.netfrag.glib/DataSource/Proxy/XMLRPC.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by joko, Fri Apr 18 15:42:26 2003 UTC revision 1.8 by joko, Wed Jun 16 15:36:19 2004 UTC
# Line 14  Line 14 
14  ##    $Id$  ##    $Id$
15  ##    --------------------------------------------------------------------------  ##    --------------------------------------------------------------------------
16  ##    $Log$  ##    $Log$
17    ##    Revision 1.8  2004/06/16 15:36:19  joko
18    ##    changed semantics to call Data::Encode
19    ##
20  ##    Revision 1.7  2003/04/18 15:42:26  joko  ##    Revision 1.7  2003/04/18 15:42:26  joko
21  ##    minor update to comment  ##    minor update to comment
22  ##  ##
# Line 193  class DataSource_Proxy_XMLRPC extends Cl Line 196  class DataSource_Proxy_XMLRPC extends Cl
196      if ($options[utf8]) {      if ($options[utf8]) {
197        $encoder = new Data_Encode($data);        $encoder = new Data_Encode($data);
198        $encoder->toUTF8();        $encoder->toUTF8();
199          $data = $encoder->get_result();
200      }      }
201      // call '_call' with 'decode'      // call '_call' with 'decode'
202      return $this->_call($command, $data, $options);      return $this->_call($command, $data, $options);
# Line 296  class DataSource_Proxy_XMLRPC extends Cl Line 300  class DataSource_Proxy_XMLRPC extends Cl
300          //if ($options[to_latin]) {          //if ($options[to_latin]) {
301            $encoder = new Data_Encode($data);            $encoder = new Data_Encode($data);
302            $encoder->toISO();            $encoder->toISO();
303              $data = $encoder->get_result();
304          //}          //}
305                    
306          $this->_be_connected();          $this->_be_connected();

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed