Removed unnecessary second parameter for the render function

This commit is contained in:
Mark Nelson 2013-06-05 16:42:18 +08:00
parent 220d83935f
commit 59ea1afd75
9 changed files with 18 additions and 26 deletions

View file

@ -120,5 +120,5 @@ if (empty($action)) {
$DB->insert_record('customcert_issues', $customcertissue);
}
// Now we want to generate the PDF.
customcert_generate_pdf($customcert, $USER->id);
customcert_generate_pdf($customcert);
}