Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
utf-8 encoding fix for italian language
  • Loading branch information
jakoch committed Aug 14, 2012
1 parent bcaaebb commit 0199d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Installation/Languages/italian.install.php
Expand Up @@ -259,7 +259,7 @@ public function offsetExists($offset)

public function offsetGet($offset)
{
return $this->language[$offset];
return utf8_encode($this->language[$offset]);
}

public function offsetSet($offset, $value)
Expand Down

0 comments on commit 0199d4d

Please sign in to comment.