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

JS Code has extra slash #5592

Closed
anonymous-matomo-user opened this issue Apr 5, 2008 · 2 comments
Closed

JS Code has extra slash #5592

anonymous-matomo-user opened this issue Apr 5, 2008 · 2 comments
Labels
Bug For errors / faults / flaws / inconsistencies etc.
Milestone

Comments

@anonymous-matomo-user
Copy link

```
piwik_url = ‘http://piwik.example.com//piwik.php’;
```

should be

```
piwik_url = ‘http://piwik.example.com/piwik.php’;
```

@anonymous-matomo-user
Copy link
Author

/modules/Url.php line 79 through 89 should be

```
static public function getCurrentUrlWithoutFileName()
{

$host = self::getCurrentHost(); $queryString = self::getCurrentScriptName() ; //add a fake letter case /test/test2/ returns /test which is not expected $urlDir = dirname ($queryString . ‘x’); return $host.$urlDir; }

```

@mattab
Copy link
Member

mattab commented May 7, 2008

(In 466) – fix #5592 extra trailing slash when piwik installed in its own subdomain

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug For errors / faults / flaws / inconsistencies etc.
Projects
None yet
Development

No branches or pull requests

2 participants