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

Removes director detection #67

Merged
merged 1 commit into from May 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -8,4 +8,4 @@ This is the Developer Changelog for Matomo PHP Tracker. All breaking changes or
- Support for new page performance metrics (added in Matomo 4) has been added. You can use `setPerformanceTimings()` to set them for page views.
- Setting page generation time using `setGenerationTime()` has been discontinued. The method still exists to not break applications still using it, but it does not have any effect. Please use new page performance metrics as replacement.
- Sending requests using cURL will now throw an exception if an error occurs in a request.
- Matomo does not longer support tracking of these browser plugins: Gears. Therefor the signature of `setPlugins()` changed.
- Matomo does not longer support tracking of these browser plugins: Gears, Director. Therefor the signature of `setPlugins()` changed.
3 changes: 0 additions & 3 deletions MatomoTracker.php
Expand Up @@ -1450,7 +1450,6 @@ public function setDebugStringAppend($string)
*
* @param bool $flash
* @param bool $java
* @param bool $director
* @param bool $quickTime
* @param bool $realPlayer
* @param bool $pdf
Expand All @@ -1461,7 +1460,6 @@ public function setDebugStringAppend($string)
public function setPlugins(
$flash = false,
$java = false,
$director = false,
$quickTime = false,
$realPlayer = false,
$pdf = false,
Expand All @@ -1472,7 +1470,6 @@ public function setPlugins(
$this->plugins =
'&fla=' . (int)$flash .
'&java=' . (int)$java .
'&dir=' . (int)$director .
'&qt=' . (int)$quickTime .
'&realp=' . (int)$realPlayer .
'&pdf=' . (int)$pdf .
Expand Down