diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-02-07 09:10:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 09:10:25 +0100 |
commit | 8e35ea0e1f83a2efac05af5a1e677d9e92326572 (patch) | |
tree | 1d0c7330cd65c2f62c8371ab6a69c6736659e8fe /lib | |
parent | e161be8e2ad302fe7c0b58bbfbc1a014d1c4f405 (diff) | |
parent | 2b11da251e9a133685377bd3f8d8e0911b121d1a (diff) | |
download | nextcloud-server-8e35ea0e1f83a2efac05af5a1e677d9e92326572.tar.gz nextcloud-server-8e35ea0e1f83a2efac05af5a1e677d9e92326572.zip |
Merge pull request #19332 from nextcloud/backport/18926/stable18
[stable18] Array access on int will fail on php7.4
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/AppFramework/OCS/BaseResponse.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/AppFramework/OCS/BaseResponse.php b/lib/private/AppFramework/OCS/BaseResponse.php index 60a4fb57ab4..68456289be5 100644 --- a/lib/private/AppFramework/OCS/BaseResponse.php +++ b/lib/private/AppFramework/OCS/BaseResponse.php @@ -126,7 +126,7 @@ abstract class BaseResponse extends Response { */ protected function toXML(array $array, \XMLWriter $writer) { foreach ($array as $k => $v) { - if ($k[0] === '@') { + if (\is_string($k) && strpos($k, '@') === 0) { $writer->writeAttribute(substr($k, 1), $v); continue; } |