3
It´s my problem:
In the front side of the site, in the modules administration and in the instalation, mxdirectory apparentely works well, but when i try to access the functions in the control panel, i recevied this message:
Parse error: syntax error, unexpected $end in /home/myhost/mysite/public_html/modules/anunciantes/admin/index.php on line 1725
and because this i can´t config the module.
this is the code lines, start in the line 1646
Quote:
redirect_header("index.php?op=listNewLinks",1,_MD_NEWLINKADDED);
}
if(!isset($_POST['op'])) {
$op = isset($_GET['op']) ? $_GET['op'] : 'main';
} else {
$op = $_POST['op'];
}
switch ($op) {
case "multicat":
multicat();
break;
*// here i just jump many lines of code
case "listNewLinks":
listNewLinks();
break;
case 'main':
default:
xdir();
break;
}
?> *// this is the line 1725
What i can do to solve this?