Changeset 9957
- Timestamp:
- 06/28/08 09:23:15 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/lib/controller/sfWebController.class.php
r7791 r9957 188 188 foreach ($matches as $match) 189 189 { 190 $params[ $match[1][0]] = $match[2][0];190 $params[urldecode($match[1][0])] = urldecode($match[2][0]); 191 191 } 192 192 branches/1.0/test/unit/controller/sfWebControllerTest.php
r3487 r9957 12 12 require_once($_test_dir.'/unit/sfContextMock.class.php'); 13 13 14 $t = new lime_test(1 7, new lime_output_color());14 $t = new lime_test(18, new lime_output_color()); 15 15 16 16 sfConfig::set('sf_max_forwards', 10); … … 125 125 ), 126 126 ), 127 '@test?id=foo%26bar&foo=bar%3Dfoo' => array( 128 'test', 129 array( 130 'id' => 'foo&bar', 131 'foo' => 'bar=foo', 132 ), 133 ), 127 134 ); 128 135