Changeset 5120

Show
Ignore:
Timestamp:
10/21/08 21:48:03 (9 months ago)
Author:
jwage
Message:

[1.0] fixes #1577

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/lib/Doctrine/Query/Abstract.php

    r5087 r5120  
    540540    { 
    541541        return array_merge($params, $this->_params['join'], $this->_params['set'], $this->_params['where'], $this->_params['having']); 
     542    } 
     543 
     544    /** 
     545     * Get the raw array of parameters 
     546     * 
     547     * @return array 
     548     */ 
     549    public function getRawParams() 
     550    { 
     551      return $this->_params; 
    542552    } 
    543553