Show
Ignore:
Timestamp:
11/27/07 03:45:30 (14 months ago)
Author:
jwage
Message:

fixes #473

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/Doctrine.php

    r3228 r3247  
    10701070     * @return string 
    10711071     */ 
    1072     public static function classify($tablename) 
    1073     { 
    1074         return preg_replace_callback('~(_?)(_)([\w])~', array("Doctrine", "classifyCallback"), ucfirst($tablename)); 
     1072    public static function classify($tableName) 
     1073    { 
     1074        return preg_replace_callback('~(_?)(_)([\w])~', array("Doctrine", "classifyCallback"), ucfirst(strtolower($tableName))); 
    10751075    } 
    10761076