2

Weird issue when upgrading Craft to 2.5 that the settings link in the revised dashboard redirects to the settings page for the Dukt twitter add-on. If I disable the add-on then works just fine. Anybody else experiencing this problem?

Cole Henley
  • 1,741
  • 11
  • 20

2 Answers2

2

While we wait for an official update, you can patch this pretty easily. Just open up craft/plugins/twitter/TwitterPlugin.php and find this function:

public function getSettingsHtml()
{
    // ...
}

Delete the function entirely, and replace it with this:

public function getSettingsUrl()
{
    return 'twitter/settings';
}
Brandon Kelly
  • 34,307
  • 2
  • 71
  • 137
1

I actually had to make this same change to the OAuth part of this plugin at craft/plugins/oauth/OauthPlugin.php

Adam McCombs
  • 1,695
  • 12
  • 25