Stop error on large csv exceeding size of cookies
This commit is contained in:
parent
2d03d25916
commit
2b5bb9cd8c
1 changed files with 2 additions and 1 deletions
|
@ -144,7 +144,8 @@ sub _csv_flash_error {
|
||||||
|
|
||||||
$c->flash(
|
$c->flash(
|
||||||
error => $error,
|
error => $error,
|
||||||
csv_data => $c->param('csv'),
|
# If csv info is huge, this fails epically
|
||||||
|
#csv_data => $c->param('csv'),
|
||||||
date_format => $c->param('date_format'),
|
date_format => $c->param('date_format'),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue