Quote:
Originally Posted by moooby
Hello, I tried to run Horacio's script but I get the following parse error, does anyone else get this? It fails to get the model list. Perhaps MFC changed something on the back end again
|
This is because of "invalid" topic of some model.
Dirty fix is to find the lines
Code:
var topic_dec = decodeURIComponent(m[14]);
var tags_dec = decodeURIComponent(m[21]);
and replace by
Code:
var topic_dec = '';
try {
topic_dec = decodeURIComponent(m[14]);
} catch (err) {
topic_dec = m[14];
}
var tags_dec = '';
try {
tags_dec = decodeURIComponent(m[21]);
} catch (err) {
tags_dec = m[21];
}