diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-03-04 12:06:16 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-03-04 12:13:16 +0100 |
commit | 98f5423df7c20a22904ea6ac84de279b0a2e5b04 (patch) | |
tree | 50cf329652376c4e56576a2861cb8863d9d4b5bf /lib | |
parent | 048e11d25fa3d44f81598ce0cb202ca11c93248e (diff) | |
download | nextcloud-server-98f5423df7c20a22904ea6ac84de279b0a2e5b04.tar.gz nextcloud-server-98f5423df7c20a22904ea6ac84de279b0a2e5b04.zip |
ucwords does not support delimiter on 5.4
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/comments/comment.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/comments/comment.php b/lib/private/comments/comment.php index 31848ed38b6..60663d61578 100644 --- a/lib/private/comments/comment.php +++ b/lib/private/comments/comment.php @@ -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)) { |