Select a file and click Delete.
Check the box "Also delete the file(s)".
Click Yes.
The file will never be removed.
The problem is that in dl_mod/includes/dl_modcp.php
line 487, you check the parameter del_file if it is true.
This parameter cannot take the value True. It only takes the values Yes and No.
Purpose of the parameter del_file is to check the users answer whether to
delete the file information or not.
Note: The administration panel doesn't have this problem.
Solution:
Code: Alles auswählen
#
#-----[ OPEN ]----------------------------------------------------------
#
dl_mod/includes/dl_modcp.php
#
#-----[ FIND ]----------------------------------------------------------
#
if ($del_file)
#
#-----[ REPLACE WITH ]--------------------------------------------------
#
if ($delete_file_too)
#
#-----[ OPEN ]----------------------------------------------------------
#
downloads.php
#
#-----[ FIND ]----------------------------------------------------------
#
'del_file' => 'del_file'
#
#-----[ REPLACE WITH ]--------------------------------------------------
#
'del_file' => 'del_file',
'delete_file_too' => 'delete_file_too'
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#