Changeset 4098
- Timestamp:
- 05/24/07 16:53:10 (6 years ago)
- Files:
-
- branches/1.0/lib/i18n/sfI18N.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/lib/i18n/sfI18N.class.php
r2769 r4098 51 51 $this->messageSource = $this->createMessageSource($dir); 52 52 $this->messageSource->setCulture($culture); 53 $this->messageFormat = $this->createMessageFormat($this->messageSource); 53 54 54 $this->messageFormat = $this->createMessageFormat($this->messageSource); 55 $this->globalMessageSource->setCulture($culture); 56 $this->globalMessageFormat = $this->createMessageFormat($this->globalMessageSource); 55 57 } 56 58 … … 100 102 { 101 103 $this->messageSource->setCulture($culture); 104 $this->messageFormat = $this->createMessageFormat($this->messageSource); 102 105 } 103 106 104 107 $this->globalMessageSource->setCulture($culture); 108 $this->globalMessageFormat = $this->createMessageFormat($this->globalMessageSource); 105 109 } 106 110