Automatically save the PDF of the impact analysis as an attachement to the ticket.

SVN:trunk[3582]
This commit is contained in:
Denis Flaven
2015-05-20 09:33:42 +00:00
parent 3949632339
commit 80c0312219
7 changed files with 162 additions and 38 deletions

View File

@@ -187,4 +187,10 @@ EOF
$this->flush();
echo $this->oPdf->Output($this->s_title.'.pdf', 'S');
}
public function get_pdf()
{
$this->flush();
return $this->oPdf->Output($this->s_title.'.pdf', 'S');
}
}