Tellico

Bug in Tellico's RIS importer

In my haste to fix a minor bug with the RIS importer for slightly mal-formed RIS files, I broke importing for normal ones. My QA people have just been sacked. You can either go back to Tellico 0.13.1 or apply this patch if you need proper RIS importing.

--- tellico-0.13.3.orig/src/translators/risimporter.cpp 2005-02-01 18:40:00
+++ tellico-0.13.3/src/translators/risimporter.cpp      2005-02-14 18:09:08
@@ -153,7 +153,7 @@
     nextLine = t.readLine();
     rx.search(currLine);
     QString tag = rx.cap(1);
-    QString value = rx.cap(2);
+    QString value = rx.cap(2).stripWhiteSpace();
     if(tag.isEmpty()) {
       continue;
     }