Skip to content

Commit

Permalink
small adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiehl committed Dec 12, 2014
1 parent 719d52b commit 97653c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/Updates/2.10.0-b6.php → core/Updates/2.10.0-b7.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Piwik\Updater;
use Piwik\Updates;

class Updates_2_10_0_b6 extends Updates
class Updates_2_10_0_b7 extends Updates
{

static function getSql()
Expand Down
2 changes: 1 addition & 1 deletion core/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ final class Version
* The current Piwik version.
* @var string
*/
const VERSION = '2.10.0-b6';
const VERSION = '2.10.0-b7';
}
2 changes: 1 addition & 1 deletion plugins/UserSettings/UserSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function mapDeprecatedActions(&$module, &$action, &$parameters)
$action = $movedMethods[$action];
}

if ($module == 'UserSettings' && $action == 'getResolution') {
if ($module == 'UserSettings' && ($action == 'getResolution' || $action == 'getConfiguration')) {
$module = 'Resolution';
}
}
Expand Down

0 comments on commit 97653c5

Please sign in to comment.