~ubuntu-branches/ubuntu/utopic/zendframework/utopic

« back to all changes in this revision

Viewing changes to library/Zend/XmlRpc/Value.php

  • Committer: Bazaar Package Importer
  • Author(s): Frank Habermann
  • Date: 2010-04-28 20:10:00 UTC
  • mfrom: (1.3.1 upstream) (9.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100428201000-o347bj5qb5i3tpot
Tags: 1.10.4-1
new upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 * @subpackage Value
18
18
 * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
19
19
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
20
 
 * @version    $Id: Value.php 20096 2010-01-06 02:05:09Z bkarwin $
 
20
 * @version    $Id: Value.php 22025 2010-04-27 18:09:14Z matthew $
21
21
 */
22
22
 
23
23
/**
158
158
    {
159
159
        if (!$this->_xml) {
160
160
            $this->generateXml();
 
161
            $this->_xml = (string) $this->getGenerator();
161
162
        }
162
163
        return $this->_xml;
163
164
    }
169
170
     */
170
171
    public function generateXml()
171
172
    {
172
 
        if (!$this->_xml) {
173
 
            $this->_generateXml();
174
 
        }
 
173
        $this->_generateXml();
175
174
    }
176
175
 
177
176
    /**