Development

Changeset 6823

You must first sign up to be able to contribute.

Changeset 6823

Show
Ignore:
Timestamp:
12/30/07 08:46:24 (1 year ago)
Author:
dwhittle
Message:

dwhittle: merged changes to branch (r6822)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/dwhittle/1.1/data/config/config_handlers.yml

    r5386 r6823  
    3030  class:    sfRoutingConfigHandler 
    3131 
    32 config/i18n.yml: 
    33   class:    sfDefineEnvironmentConfigHandler 
    34   param: 
    35     prefix: sf_i18n_ 
    36  
    3732modules/*/config/generator.yml: 
    3833  class:    sfGeneratorConfigHandler 
     
    4035modules/*/config/view.yml: 
    4136  class:    sfViewConfigHandler 
    42  
    43 modules/*/config/mailer.yml: 
    44   class:    sfDefineEnvironmentConfigHandler 
    45   param: 
    46     prefix: sf_mailer_ 
    47     module: yes 
    4837 
    4938modules/*/config/security.yml: 
  • branches/dwhittle/1.1/lib/user/sfUser.class.php

    r6669 r6823  
    8888    // otherwise 
    8989    //  - use the culture defined in the user session 
    90     //  - use the default culture set in i18n.yml 
     90    //  - use the default culture set in settings.yml 
    9191    $currentCulture = $storage->read(self::CULTURE_NAMESPACE); 
    9292    $this->setCulture($this->getParameter('culture', !is_null($currentCulture) ? $currentCulture : $this->getParameter('default_culture', 'en')));