We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ae646 commit 60bfc44Copy full SHA for 60bfc44
src/yajra/Datatables/Processors/DataProcessor.php
@@ -188,7 +188,7 @@ protected function escapeColumns(array $output)
188
{
189
return array_map(function ($row) {
190
foreach ($row as $key => $value) {
191
- if (in_array($key, $this->escapeColumns) || $this->escapeColumns == '*') {
+ if ($this->escapeColumns == '*' || in_array($key, $this->escapeColumns, true)) {
192
$row[$key] = e($value);
193
}
194
0 commit comments