Changeset 4378

Show
Ignore:
Timestamp:
05/19/08 16:56:05 (8 months ago)
Author:
jwage
Message:

fixes #1047

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/lib/Doctrine/Inflector.php

    r4247 r4378  
    2424 *  
    2525 * The methods in these classes are from several different sources collected 
    26  * across the internet through php development for several years. 
    27  * They have been updated and modified a little bit for Doctrine but are mainly untouched. 
     26 * across several different php projects and several different authors. The  
     27 * original author names and emails are not known 
    2828 * 
    2929 * @package     Doctrine 
     
    3434 * @version     $Revision: 3189 $ 
    3535 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi> 
     36 * @author      Jonathan H. Wage <jonwage@gmail.com> 
    3637 */ 
    3738class Doctrine_Inflector 
     
    133134                          '/([ti])a$/i' => '\\1um', 
    134135                          '/(n)ews$/i' => '\\1ews', 
     136                          '/^(.{2,2})$/i' => '\\1', 
    135137                          '/s$/i' => ''); 
    136138