Changeset 24146
- Timestamp:
- 11/18/09 17:42:46 (4 years ago)
- Files:
-
- branches/1.3/lib/routing/sfRoute.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.3/lib/routing/sfRoute.class.php
r24050 r24146 315 315 316 316 /** 317 * Returns the route parameters. 318 * 319 * @return array The route parameters 320 */ 321 public function getParameters() 322 { 323 if (!$this->compiled) 324 { 325 $this->compile(); 326 } 327 328 return $this->parameters; 329 } 330 331 /** 317 332 * Returns the compiled pattern. 318 333 *