Fixed vB4 Import: Post Titles are never imported (getPostMessage seems broken)

Alternatively:
Diff:
diff --git a/src/addons/XFI/Import/Importer/vBulletin.php b/src/addons/XFI/Import/Importer/vBulletin.php
index 3191bf030..519606c7b 100644
--- a/src/addons/XFI/Import/Importer/vBulletin.php
+++ b/src/addons/XFI/Import/Importer/vBulletin.php
@@ -3702,6 +3702,8 @@ class vBulletin extends AbstractForumImporter
 
     protected function getPostMessage($title, $message, $threadTitle)
     {
+        $title = rtrim($title);
+
         if ($title !== '')
         {
             if (!isset($this->session->extra['reply_prefixes']))
 
Top Bottom