|
|
@ -250,9 +250,9 @@ var Movie = new Class({ |
|
|
|
getUnprefixedTitle: function(t){ |
|
|
|
if(t.substr(0, 4).toLowerCase() == 'the ') |
|
|
|
t = t.substr(4) + ', The'; |
|
|
|
if(t.substr(0, 3).toLowerCase() == 'an ') |
|
|
|
else if(t.substr(0, 3).toLowerCase() == 'an ') |
|
|
|
t = t.substr(3) + ', An'; |
|
|
|
if(t.substr(0, 2).toLowerCase() == 'a ') |
|
|
|
else if(t.substr(0, 2).toLowerCase() == 'a ') |
|
|
|
t = t.substr(2) + ', A'; |
|
|
|
return t; |
|
|
|
}, |
|
|
|