I was having an issue with this mod, the nomination thread that was created by the cron run didn't use my translated phrases (my forum is spanish).
I watched a bit in the cron php file, and I figured out what is the problem: the phrases table is queried like this:
Code:
$get_phrase = $vbulletin->db->query_read("SELECT * FROM `". TABLE_PREFIX ."phrase` WHERE `varname` = 'nominate_topic_nomination_thread_title_fortnight'");
The problem is that it doesn't select any language, so mysql just returns the default phrase. It should have an extra "where" clause like this:
Code:
languageid = (id of the forum default language)
Where tie "id of the default language" should be queried from the vbulletin settings.