Development

Changeset 12182

You must first sign up to be able to contribute.

Changeset 12182

Show
Ignore:
Timestamp:
10/14/08 19:59:10 (5 years ago)
Author:
Jonathan.Wage
Message:

[1.2] fixes #4463 - Issue with app:routes throwing exception when using Doctrine

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfDoctrinePlugin/trunk/lib/routing/sfDoctrineRoute.class.php

    r11791 r12182  
    3838 
    3939    $this->options['object_model'] = $this->options['model']; 
    40     $this->options['model'] = Doctrine::getTable($this->options['model']); 
    4140  } 
    4241 
    4342  protected function getObjectForParameters($parameters) 
    4443  { 
     44    $this->options['model'] = Doctrine::getTable($this->options['model']); 
    4545    if (!isset($this->options['method'])) 
    4646    {