----------------------
Ho notato una cosa strana in Junior Admin. Stavo per cercare un nickname attraverso l'alfabeto orizzontale in alto, faccio click e mi accorgo che mi da una pagina di errore, "file non trovato". Mi accorgo in fondo alla pagina che nel link mancava l'estensione. Allora controllo il file admin_jr_admin.php eppure sembra essere ok. Non so dove mettermi le mani.
elseif (preg_match("/^.+-.+$/", $ord_value))
{
$items = explode('-', $ord_value);
for($i = $items[0]; $i <= $items[1]; $i++)
{
if (isset($letters_list[$i]))
{
$list .= '<a href="' . append_sid('admin_jr_admin.' . $phpEx . '?sort_item=' . ( ( isset($_GET['sort_item']) || isset($_POST['sort_item']) ) ? $sort_item : 'username' ) . '&start=0&order=' . $order . '&alphanum=' . strtoupper(chr($i))) . '" class="nav">' . strtoupper(chr($i)) . '</a>';
}
else
{
$list .= strtoupper(chr($i));
}
$list .= $seperator;
}
}
else
{
if (isset($letters_list[$ord_value]))
{
$list .= '<a href="' . append_sid('admin_jr_admin.' . $phpEx . '?sort_item=' . ( ( isset($_GET['sort_item']) || isset($_POST['sort_item']) ) ? $sort_item : 'username' ) . '&start=0&order=' . $order . '&alphanum=' . strtoupper(chr($ord_value))) . '" class="nav">' . strtoupper(chr($ord_value)) . '</a>';
}
else
{
$list .= strtoupper(chr($ord_value));
}
$list .= $seperator;
}
{
$items = explode('-', $ord_value);
for($i = $items[0]; $i <= $items[1]; $i++)
{
if (isset($letters_list[$i]))
{
$list .= '<a href="' . append_sid('admin_jr_admin.' . $phpEx . '?sort_item=' . ( ( isset($_GET['sort_item']) || isset($_POST['sort_item']) ) ? $sort_item : 'username' ) . '&start=0&order=' . $order . '&alphanum=' . strtoupper(chr($i))) . '" class="nav">' . strtoupper(chr($i)) . '</a>';
}
else
{
$list .= strtoupper(chr($i));
}
$list .= $seperator;
}
}
else
{
if (isset($letters_list[$ord_value]))
{
$list .= '<a href="' . append_sid('admin_jr_admin.' . $phpEx . '?sort_item=' . ( ( isset($_GET['sort_item']) || isset($_POST['sort_item']) ) ? $sort_item : 'username' ) . '&start=0&order=' . $order . '&alphanum=' . strtoupper(chr($ord_value))) . '" class="nav">' . strtoupper(chr($ord_value)) . '</a>';
}
else
{
$list .= strtoupper(chr($ord_value));
}
$list .= $seperator;
}
Thanks
