Show
Ignore:
Timestamp:
04/30/08 01:03:15 (23 months ago)
Author:
jwage
Message:

Removing deprecated alias methods.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/lib/Doctrine/Data/Import.php

    r4285 r4301  
    194194            if ($obj->getTable()->hasField($key)) { 
    195195                $obj->set($key, $value); 
    196             } else if (method_exists($obj, 'set' . Doctrine::classify($key))) { 
    197                     $func = 'set' . Doctrine::classify($key); 
     196            } else if (method_exists($obj, 'set' . Doctrine_Inflector::classify($key))) { 
     197                    $func = 'set' . Doctrine_Inflector::classify($key); 
    198198                    $obj->$func($value); 
    199199            } else if ($obj->getTable()->hasRelation($key)) {