Merge pull request #22852 from owncloud/backport-22851-php54-for-comments

[9.0] ucwords does not support delimiter on 5.4
This commit is contained in:
Thomas Müller 2016-03-04 14:05:45 +01:00
commit 3d28f364c5
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ class Comment implements IComment {
protected function fromArray($data) {
foreach(array_keys($data) as $key) {
// translate DB keys to internal setter names
$setter = 'set' . str_replace('_', '', ucwords($key,'_'));
$setter = 'set' . implode('', array_map('ucfirst', explode('_', $key)));
$setter = str_replace('Timestamp', 'DateTime', $setter);
if(method_exists($this, $setter)) {