mediawiki_twentyten
mediawiki_twentyten copied to clipboard
Undefined Method
Hi,
Using mw 1.18.0.
After installing got the error "Call to undefined method SkinTwentyTen::tooltipAndAccesskey". Found with Google that it has something to do with the mw version.
Can you help me out?
Greetz, Pascal
had the same issue, found the answer here
in twentyten.php replace all instances of "tooltipAndAccesskey" with "tooltipAndAccesskeyAttribs"
Excellent, that saved me a lot of troubleshooting when upgrading from 1.17 to 1.19, where I was simply unable to see what the error was but the login and other menues disappeared and the logo was replaced with another instance of the home page.
Just replacing this in all instances seems to have solved my error as well. Lots of thanks :)
I just added the following code to SkinTwentyTen class which fixed the error.
function tooltipAndAccesskey($string) {
return $string;
}