Development

Changeset 24146

You must first sign up to be able to contribute.

Changeset 24146

Show
Ignore:
Timestamp:
11/18/09 17:42:46 (4 years ago)
Author:
nicolas
Message:

fixes #46 - CAPS - news : change culture

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.3/lib/routing/sfRoute.class.php

    r24050 r24146  
    315315 
    316316  /** 
     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  /** 
    317332   * Returns the compiled pattern. 
    318333   *