Ticket #361 (closed Bug: fixed)
Polish diacritic marks conversion in Forge
| Reported by: | cmike | Owned by: | Shadowhand |
|---|---|---|---|
| Priority: | minor | Milestone: | 2.1 |
| Component: | Modules:Forge | Version: | SVN HEAD |
| Keywords: | utf8 i18n forge | Cc: |
Description
Function strtolower doesn't convert polish diacritic marks: is:
array_unshift($args, $this->label ? strtolower($this->label) : $this->name);
should be:
array_unshift($args, $this->label ? utf8::strtolower($this->label) : $this->name);
analogical in line 112: is
ucwords()
should be:
utf::ucwords()
Change History
Note: See
TracTickets for help on using
tickets.
