Walter Monts - 2006-05-05

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;