Bugs item #3541966, was opened at 2012-07-10 02:34
Message generated for change (Settings changed) made by madhuracj
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=377408&aid=3541966&group_id=23067
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Configuration
Group: 3.5.2
Status: Open
>Resolution: Fixed
>Priority: 1
Private: No
Submitted By: Alain ICHE (ichea)
Assigned to: Madhura Jayaratne (madhuracj)
>Summary: (ok 3.5.3) Error in generated configuration arrray
Initial Comment:
Since of numerous versions, when we use 'setup' and save the 'config' file, all array generation miss the last comma as in :
$cfg['PDFPageSizes'] = array(
'A3',
'A4',
'A5',
'letter' <--- where is the comma ?
'legal');
The error is in 'ConfigGenerator.class.php' on line 144 where the line must be
$ret .= ($i > 0 ? ',' : '') . $crlf . ' ' . $retv[$i];
instead of
$ret .= ($i < $imax ? ($i > 0 ? ',' : '') : '') . $crlf . ' ' . $retv[$i];
----------------------------------------------------------------------
Comment By: Madhura Jayaratne (madhuracj)
Date: 2012-07-28 19:43
Message:
This bug was fixed in repository and will be part of a future release;
thanks for reporting.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=377408&aid=3541966&group_id=23067
|