Ticket #361 (closed Bug: fixed)

Opened 10 months ago

Last modified 10 months ago

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

Changed 10 months ago by Shadowhand

  • keywords utf8 i18n forge added; polish,diacritic,mark,forge removed
  • owner changed from cmike to Shadowhand
  • status changed from new to assigned

Changed 10 months ago by Shadowhand

  • status changed from assigned to closed
  • resolution set to fixed

Fixed in r1887.

Please reopen this ticket if you find any other errors like this.

Note: See TracTickets for help on using tickets.