Development

Changeset 32845

You must first sign up to be able to contribute.

Changeset 32845

Show
Ignore:
Timestamp:
07/28/11 13:50:48 (2 years ago)
Author:
fabien
Message:

[1.4] removed dead code (closes #9881)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.4/lib/routing/sfPatternRouting.class.php

    r29418 r32845  
    319319    { 
    320320      // find a matching route 
    321       if (false === $route = $this->getRouteThatMatchesParameters($params, $this->options['context'])) 
     321      if (false === $route = $this->getRouteThatMatchesParameters($params)) 
    322322      { 
    323323        throw new sfConfigurationException(sprintf('Unable to find a matching route to generate url for params "%s".', is_object($params) ? 'Object('.get_class($params).')' : str_replace("\n", '', var_export($params, true))));