Okay, I made it myself. Solution follow:
PHP Code:
$lastcreatedthread_get = $this->registry->db->query("SELECT dateline
FROM " . TABLE_PREFIX . "thread
WHERE forumid = " . $forum[forumid] . "
AND postuserid = " . $this->thread[postuserid] . "
ORDER BY dateline DESC
LIMIT 1 OFFSET 1;");
$lastcreatedthread_array = $this->registry->db->fetch_row($lastcreatedthread_get);
$lastcreatedthread = date("d.m.Y H:i", $lastcreatedthread_array[0]);
Created as a plugin, Hook "postbit_display_complete".
Insert the variable
$lastcreatedthread into the postbit template to display the date.
Where's the applause?