Türkçe:
Bu Önemli düzeltmenin yapılması gereklidir:
Düzeltme: 1
forums/topic.php dosyasını açın;
Aşağıdaki metni bulun (162.satır)
PHP
: "[ <a href='".$site_sess->url("moderator.php?action=ip&incoming=".$row['ip_address'])."' target='_blank'>".$row['ip_address']."</a> ]";
ve aşağıdaki ile değiştirin:
PHP
: "[ <a href='".$site_sess->url("modcp.php?action=ip&incoming=".$row['ip_address'])."' target='_blank'>".$row['ip_address']."</a> ]";
Düzeltme: 2
forums/modcp.php dosyasını açın;
Aşağıdaki metni bulun (1982.satır)
PHP
$iptool = $HTTP_GET_VARS['iptool'] ? $HTTP_GET_VARS['iptool'] : $HTTP_POST_VARS['iptool'];
hemen altına bu metni ekleyin;
PHP
$incoming = $HTTP_GET_VARS['incoming'] ? $HTTP_GET_VARS['incoming'] : $HTTP_POST_VARS['incoming'];
Aynı yerde aşağıdaki metni bulun (2004.satır)
PHP
"ip" => $ip,
aşağıdaki ile değiştirin:
PHP
"ip" => $incoming,
English:
[b]
This is an important security fix[/b]
Step 1
Open forums/topics.php (line 162):
Replace
PHP
: "[ <a href='".$site_sess->url("moderator.php?action=ip&incoming=".$row['ip_address'])."' target='_blank'>".$row['ip_address']."</a> ]";
with
PHP
: "[ <a href='".$site_sess->url("modcp.php?action=ip&incoming=".$row['ip_address'])."' target='_blank'>".$row['ip_address']."</a> ]";
Step 2
Open forums/modcp.php (line 1982) and search for
PHP
$iptool = $HTTP_GET_VARS['iptool'] ? $HTTP_GET_VARS['iptool'] : $HTTP_POST_VARS['iptool'];
Add the following line below
PHP
$incoming = $HTTP_GET_VARS['incoming'] ? $HTTP_GET_VARS['incoming'] : $HTTP_POST_VARS['incoming'];
and find (line 2004):
PHP
"ip" => $ip,
replace:
PHP
"ip" => $incoming,