Changeset 8464
- Timestamp:
- 04/15/08 02:16:26 (6 months ago)
- Files:
-
- branches/1.1/lib/routing/sfRouting.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/routing/sfRouting.class.php
r7779 r8464 226 226 public function filterParametersEvent(sfEvent $event, $parameters) 227 227 { 228 return array_merge($parameters, $this->parse($event['path_info'])); 228 try 229 { 230 return array_merge($parameters, $this->parse($event['path_info'])); 231 } 232 catch (sfError404Exception $e) 233 { 234 return $parameters; 235 } 229 236 } 230 237