mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-24 04:03:34 -08:00
Remove escaping for CSV to prevent weird encoding
This commit is contained in:
parent
61d07bdc7c
commit
2a8ab06ca3
|
@ -467,7 +467,7 @@ class ReportsController extends Controller
|
|||
$row = [ ];
|
||||
|
||||
if (e(Input::get('company')) == '1') {
|
||||
$row[] = is_null($asset->company) ? '' : '"'.e($asset->company->name).'"';
|
||||
$row[] = is_null($asset->company) ? '' : '"'.$asset->company->name.'"';
|
||||
}
|
||||
|
||||
if (e(Input::get('asset_name')) == '1') {
|
||||
|
|
Loading…
Reference in a new issue