Making a PDF report, in the column Author, Title and Publisher, the first letter of each file is missing.
You can fix it editing
/(your directory)/reports/(report).php
and assigning -1 to variable i into convertit function.
Example
in /(your directory)/reports/ticr.php
function convertit($text="")
{ ...
$i = 0;
//CHANGE TO
function convertit($text="")
{ ...
$i = -1;
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Making a PDF report, in the column Author, Title and Publisher, the first letter of each file is missing.
You can fix it editing
/(your directory)/reports/(report).php
and assigning -1 to variable i into convertit function.
Example
in /(your directory)/reports/ticr.php
function convertit($text="")
{ ...
$i = 0;
//CHANGE TO
function convertit($text="")
{ ...
$i = -1;