remove duplicate CLOB sanitation

pull/872/head
El RIDO 2022-01-25 05:59:22 +01:00 committed by GitHub
parent f4438a0103
commit 0333777a37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -593,11 +593,7 @@ class Database extends AbstractData
// returned CLOB values are streams, convert these into strings
$result = $firstOnly ?
array_map('self::_sanitizeClob', $result) :
array_map(
function ($row) {
return array_map('self::_sanitizeClob', $row);
}, $result
);
$result;
}
return $result;
}