Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
substr -> mb_substr
Browse files Browse the repository at this point in the history
  • Loading branch information
denisatsqnp committed Jul 25, 2014
1 parent 6b5f063 commit 7738894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Filter/Word/UnderscoreToStudlyCase.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function filter($value)
return $value;
}

return mb_strtolower(mb_substr($value, 0, 1)) . substr($value, 1);
return mb_strtolower(mb_substr($value, 0, 1)) . mb_substr($value, 1);
};
}

Expand Down

0 comments on commit 7738894

Please sign in to comment.