4
I kind of solved the double definition problem. But there is another notice it shows up.
Notice [PHP]: Undefined variable: op in file modules/mymenu/admin/index.php line 694
Notice [PHP]: Use of undefined constant _AM_FONT - assumed '_AM_FONT' in file modules/mymenu/admin/index.php line 117
switch($op) {
case "MyMenuDel":
MyMenuDel($menuid, $ok);
break;
case "MyMenuAdd":
MyMenuAdd($xposition, $itemname, $indent, $margintop, $marginbottom, $itemurl, $bold, $membersonly, $mainmenu, $status);
break;
case "MyMenuSave":
MyMenuSave($menuid, $xposition, $itemname, $indent, $margintop, $marginbottom, $itemurl, $bold, $membersonly, $mainmenu, $status);
break;
case "MyMenuAdmin":
MyMenuAdmin();
break;
case "MyMenuEdit":
MyMenuEdit($menuid);
break;
default:
MyMenuAdmin();
break;
}
Would anyone be able to tell me where is the variable $op initialized ?
And here is the code to the other error
"._AM_FONT." |
Any help would be greatly appreciated