Türkçe:
Bu Önemli düzeltmenin yapılması gereklidir:
Düzeltme: 1
submit.php dosyasını açın;
Aşağıdaki metni bulun (1823.satır)
PHP
else {
$new_name = $remote_media_file;
}
if (!$uploaderror) {
$active = $direct_upload ? 1 : 0;
ve aşağıdaki ile değiştirin:
PHP
else {
$new_name = $remote_down_file;
}
if (!$uploaderror) {
$active = $direct_upload ? 1 : 0;
Düzeltme: 2
admin/downloads.php dosyasını açın;
Aşağıdaki metni bulun (275.satır)
PHP
show_form_header("downloads.php", "updatefile", "form", 1);
ve aşağıdaki ile değiştirin:
PHP
$show_remote_file_url = is_remote_file($row['file_name']) ? $row['file_name'] : "";
show_form_header("downloads.php", "updatefile", "form", 1);
Aşağıdaki metni bulun (281.satır)
PHP
show_upload_row($lang['file'].":", "file", "<br /><span class=smalltext>".$lang['allowed_mediatypes_desc']." ".$lang['all_file_formats']."</span>");
ve aşağıdaki ile değiştirin:
PHP
show_upload_row($lang['file'].":", "file", "<br /><span class='smalltext'>".$lang['allowed_mediatypes_desc']." ".$lang['all_file_formats']."</span>", $show_remote_file_url);
Düzeltme: 3
lang/english/admin.php dosyasını açın;
Aşağıdaki metni bulun (1380.satır)
PHP
$lang['delete_image_files_confirm'] = "Do you want to delete this file?";
ve aşağıdaki ile değiştirin:
PHP
$lang['delete_down_files_confirm'] = "Do you want to delete this file?";
English:
[b]
This is an important security fix[/b]
Step 1
Open submit.php
and find (line 1823):
PHP
else {
$new_name = $remote_media_file;
}
if (!$uploaderror) {
$active = $direct_upload ? 1 : 0;
replace:
PHP
else {
$new_name = $remote_down_file;
}
if (!$uploaderror) {
$active = $direct_upload ? 1 : 0;
Step: 2
Open admin/downloads.php
and find (line 275):
PHP
show_form_header("downloads.php", "updatefile", "form", 1);
replace:
PHP
$show_remote_file_url = is_remote_file($row['file_name']) ? $row['file_name'] : "";
show_form_header("downloads.php", "updatefile", "form", 1);
find (line: 281)
PHP
show_upload_row($lang['file'].":", "file", "<br /><span class=smalltext>".$lang['allowed_mediatypes_desc']." ".$lang['all_file_formats']."</span>");
replace:
PHP
show_upload_row($lang['file'].":", "file", "<br /><span class='smalltext'>".$lang['allowed_mediatypes_desc']." ".$lang['all_file_formats']."</span>", $show_remote_file_url);
Step: 3
Open lang/english/admin.php
and find (Line:1380)
PHP
$lang['delete_image_files_confirm'] = "Do you want to delete this file?";
replace:
PHP
$lang['delete_down_files_confirm'] = "Do you want to delete this file?";