Reports - reports.php / History RSS Feed
Hello FS-Team,
i noticed, that in reports.php there is an incomplete list of
event-translations and an error in the current array.
Line: 23:
$events = array(1 => L('opened'),
13 => L('reopened'),
2 => L('closed'),
3 => L('edited'),
14 => L('assignmentchanged'),
29 => L('events.useraddedtoassignees'),
4 => L('commentadded'),
5 => L('commentedited'),
6 => L('commentdeleted'),
7 => L('attachmentadded'),
8 => L('attachmentdeleted'),
11 => L('relatedadded'),
11 => L('relateddeleted'),
There are two 11 in the array!
I extracted a new array from events.inc.php (but i don't know how
complete/reliable this source is):
$events = array(
1 => L('taskopened'),
2 => L('taskclosed'),
3 => L('taskedited'),
4 => L('commentadded'),
5 => L('commentedited'),
(Continue reading)