Subversion Repositories eFlore/Applications.cel

Rev

Rev 1604 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1604 Rev 1605
Line 154... Line 154...
154
    * General storage function
154
    * General storage function
155
    *
155
    *
156
    * @param string $data binary data to append
156
    * @param string $data binary data to append
157
    * @access private
157
    * @access private
158
    */
158
    */
159
    function _append($data)
159
    function _append(&$data)
160
    {
160
    {
161
        if (strlen($data) > $this->_limit) {
161
        if (strlen($data) > $this->_limit) {
162
            $data = $this->_addContinue($data);
162
            $data = $this->_addContinue($data);
163
        }
163
        }
164
        $this->_data      = $this->_data.$data;
164
        $this->_data      = $this->_data.$data;