-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Re-add backwards compatibility for URLs using old UserSettings plugin. #8941
Conversation
@@ -78,7 +78,7 @@ | |||
* @return bool | |||
*/ | |||
function Piwik_ShouldPrintBackTraceWithMessage() | |||
{ | |||
{return true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo
79d4900
to
643b7e6
Compare
@@ -49,4 +50,33 @@ public function extendVisitorDetails(&$visitor, $details) | |||
$visitor['browserVersion'] = $instance->getBrowserVersion(); | |||
} | |||
|
|||
public function renameUserSettingsModuleAndAction(&$module, &$action) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove it again in Piwik 3.0 maybe? We could add a reminder to remove it in DeprecatedMethodsTest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added to DeprecatedMethodsTest.
d017ad8
to
643b7e6
Compare
… + add test coverage so BC break will be detected in the future.
…ins) & split up the tests for that BC.
…dMethodsTest so they will be removed in 3.0.
b821019
to
83f1368
Compare
Ready for another review/merge. |
Re-add backwards compatibility for URLs using old UserSettings plugin.
As title. Includes system tests so BC break will be detected in the future. And includes tweaks to UI tests for more coverage.
Fixes #8923