Changeset 11908
- Timestamp:
- 10/02/08 14:50:25 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.2/lib/test/sfTestFunctionalBase.class.php
r11905 r11908 177 177 public function get($uri, $parameters = array(), $changeStack = true) 178 178 { 179 return $this->call($uri, 'get', $parameters );179 return $this->call($uri, 'get', $parameters, $changeStack); 180 180 } 181 181 … … 213 213 public function post($uri, $parameters = array(), $changeStack = true) 214 214 { 215 return $this->call($uri, 'post', $parameters );215 return $this->call($uri, 'post', $parameters, $changeStack); 216 216 } 217 217