Skip to content
Snippets Groups Projects
Commit fd392fd5 authored by Kevin Kaland's avatar Kevin Kaland
Browse files

Flatten was broken. Make it not broken.

parent 5dcf6f48
No related branches found
No related tags found
No related merge requests found
......@@ -178,14 +178,14 @@ function fillpdf_pdf_link($fid, $nids = NULL, $webform_arr = NULL, $sample = FAL
function fillpdf_parse_uri() {
// Avoid undefined index warnings, but don't clobber existing values
$_GET += array(
'nid' => '',
'nids' => '',
'webform' => '',
'webforms' => '',
'fid' => '',
'sample' => '',
'download' => '',
'flatten' => '',
'nid' => NULL,
'nids' => NULL,
'webform' => NULL,
'webforms' => NULL,
'fid' => NULL,
'sample' => NULL,
'download' => NULL,
'flatten' => NULL,
);
$force_download = FALSE;
$flatten = TRUE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment