Skip to content

Commit

Permalink
[mms] Fix another issue with older versions of PHP in Horde_String_Tr…
Browse files Browse the repository at this point in the history
…ansliterate.
  • Loading branch information
slusarz committed Aug 14, 2014
1 parent dbe30e8 commit 6ade4e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion framework/Util/lib/Horde/String/Transliterate.php
Expand Up @@ -59,7 +59,7 @@ static public function toAscii($str)
);

foreach ($methods as $val) {
if (($out = call_user_func(array(self, $val), $str)) !== false) {
if (($out = call_user_func(array(__CLASS__, $val), $str)) !== false) {
return $out;
}
}
Expand Down
4 changes: 2 additions & 2 deletions framework/Util/package.xml
Expand Up @@ -34,7 +34,7 @@
</stability>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
*
* [mms] Fix another issue with older versions of PHP in Horde_String_Transliterate.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down Expand Up @@ -698,7 +698,7 @@ Converted to package.xml 2.0 for pear.horde.org
<date>2014-08-06</date>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
*
* [mms] Fix another issue with older versions of PHP in Horde_String_Transliterate.
</notes>
</release>
</changelog>
Expand Down

0 comments on commit 6ade4e5

Please sign in to comment.