- Edited
I'm sorry for so many questions, but I have to ask.When my plugin runs the menu items are replaced with the relative url of my plugin.Instead of the normal http://myosticket/scp/dashboard.php, I have http://server/myosticket/scp/dispatcher.php/mypluginpath/dashboard.php.The latter, of course, won't work. The only way I know to fix it is something in the navigation.tmpl.php file like,echo sprintf('<li class="%s %s"><a href="http://myserver/osticketdev/scp/%s">%s</a>',I really feel like this is a lot of hacking though. I could make it more elegant, but should I be fixing this in the core? When I upgrade it will go away.edit: or this, echo sprintf('<li class="%s %s"><a href="' . ROOT_PATH . '%s">%s</a>',