Error
![]() ![]() |
hello again. I have a new problem: I frecuently use the portuguese language section of IMDb but now your script doesn't work in this section. Whatever page like http://portuguese.imdb.com/title/tt../ return the error: "You need to log in to IMDb for this script to work" http://portuguese.imdb.com/title/tt1182345/ - > login error message
Can you make the script active in portuguese.imdb.com? Thank you. |
![]() ![]() |
The different localizations don't have priority right now. A quick fix... Line 922 replace
var result = account.innerHTML.match(/\s*([^>]+)'s account/i);with
if(this.loc.indexOf('portuguese')!=-1){
var result = account.innerHTML.match(/Conta.de.([^<]+)/i);
} else {
var result = account.innerHTML.match(/\s*([^>]+)'s account/i);
}
|
![]() ![]() |
Thank you. It works perfect now. |


