On the first split, the thread splitter includes "Part 1" in the thread name, which is cool, but since it's actually the 2nd thread in the potential series, how could I make the title "Part 2" instead?
PHP Code:
//fix the title for when we get multi-parts
if (strstr($oldThread['title'], "Part")) { $oldThread['title'] = substr($oldThread['title'], 0, (strlen($oldThread['title']) - 8)); }