Selected post order is not valid Hatası |
modules/Forums/viewtopic.php
dosyasını açın ve aşağıdaki kodları bulun:
$post_order = (!empty($HTTP_POST_VARS['postorder'])) ?
htmlspecialchars($HTTP_POST_VARS['postorder']) :
htmlspecialchars($HTTP_GET_VARS['postorder']);
{
Aşağıdakiler ile değiştirin:
$post_order = (!empty($HTTP_POST_VARS['postorder'])) ?
htmlspecialchars($HTTP_POST_VARS['postorder']) :
htmlspecialchars($HTTP_GET_VARS['postorder']);
if (!eregi("^((asc)|(desc))$",$post_order) )
{ |
|
|
|
|
|
|