watch in file: /download/index.php
in line 21:
$textl = $lng['downloads'];change on:
if isset($_GET['cat'])
{
$cat = intval($_GET['cat']);
$req = mysql_query("SELECT * FROM `download` WHERE `type` = 'cat' AND `id` = '" . $cat . "' LIMIT 1");
$res = mysql_fetch_array($req);
$head_words = $res['text'];
}
elseif isset($_GET['file'])
{
$file = intval($_GET['file']);
$req = mysql_query("SELECT * FROM `download` WHERE `type` = 'file' AND `id` = '" . $file . "' LIMIT 1");
$res = mysql_fetch_array($req);
$head_words = $res['name'];
}
$textl = $head_words; and be happy! :-)