Development

Changeset 8694

You must first sign up to be able to contribute.

Changeset 8694

Show
Ignore:
Timestamp:
04/30/08 17:27:05 (7 months ago)
Author:
Jonathan.Wage
Message:

Fixing api change from Doctrine 0.11

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfDoctrinePlugin/branches/1.0-sf1.1/lib/sfDoctrineRecord.class.php

    r8660 r8694  
    6262  public function get($name, $load = true) 
    6363  { 
    64     $getter = 'get' . Doctrine::classify($name); 
     64    $getter = 'get' . Doctrine_Inflector::classify($name); 
    6565 
    6666    if (method_exists($this, $getter)) 
     
    9494  public function set($name, $value, $load = true) 
    9595  { 
    96     $setter = 'set' . Doctrine::classify($name); 
     96    $setter = 'set' . Doctrine_Inflector::classify($name); 
    9797 
    9898    if (method_exists($this, $setter))