ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
dev.txt.php
Go to the documentation of this file.
1<?php exit; ?>
2
3## MANTIS BUG :0019795
4It is not possible to remove files from a peer feedback from a exercise.
5
6The problem seems the file path creation and affects both feedback with and without criteria.
7
8Example:
9User ID who did the exercise: 310
10User ID who provide feedback: 6
11Feedback file: feedback.txt
12Criteria ID = 10
13
14Without criteria the uploaded files are stored outside the final path. The name of the file is also affected.
15
16data/client/ilExercise/3/exc_343/peer_up_15/310/6/ [empty directory]
17data/client/ilExercise/3/exc_343/peer_up_15/310/6feedback.txt
18
19After patch:
20
21data/client/ilExercise/3/exc_343/peer_up_15/310/6/feedback.txt
22
23
24With criteria, the final directory name is userid+criteriaid instead of criteria id.
25
26data/client/ilExercise/3/exc_343/peer_up_15/310/610/feedback.txt
27
28After patch:
29
30data/client/ilExercise/3/exc_343/peer_up_15/310/6/10/feedback.txt
31
32## We need to take a look at how to proceed with the migration of the old directories/files.
exit
Definition: dev.txt.php:1
An exception for terminatinating execution or to throw for unit testing.