Hi - I think I found a bug on the Translations listing page at admin/content/translation. I was finding that the translation filters (source/translation language and status) were working fine, but the node filters were having no effect. I did some digging and found the cause of the problem, in translation.module at line 521:
$where += array(str_replace('WHERE', '', $filter['where']));
Somehow this was failing to add the node filters to the generated SQL. I changed that line to look like this and it is now working fine:
$where[] = str_replace('WHERE ', '', $filter['where']);
Hope this helps someone...
Comments
Comment #1
bartezz commentedBug confirmed...
Code by phenaproxima working!
Thanx
Comment #2
bartezz commentedDiff attached
Comment #3
bartezz commentedEDIT: sorry, something went wrong in post... attachment in previous post.
Comment #4
R.Hendel commentedDeprecated - D5 is no longer supported.
Comment #5
bartezz commentedLol, I guess after more than 2 years it became deprecated yes... thanx for the quick response :)