Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JURI::isInternal #14

Open
travisapple opened this issue Aug 1, 2016 · 0 comments
Open

JURI::isInternal #14

travisapple opened this issue Aug 1, 2016 · 0 comments

Comments

@travisapple
Copy link

JURI::isInternal returns FALSE when the url is something like "/index.php/foo" and so $flink is returning FALSE for actual internal pages. You need something like

$flink = $menuItem->flink;
if( substr($flink,0,1) == '/' ) {
    $flink = substr($flink,1);
}
    $isInternal = JURI::isInternal($flink);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant