Modified the SVar keyword to split only 3 elements, to ensure web addresses can be stored.

This commit is contained in:
jendave
2011-08-06 05:44:33 +00:00
parent d4662c470a
commit 3c53d0573e

View File

@@ -324,7 +324,7 @@ public class CardFactory implements NewConstants {
String parse = card.getKeyword().get(n).toString();
card.removeIntrinsicKeyword(parse);
String k[] = parse.split(":");
String k[] = parse.split(":", 3);
if(k.length > 2) card.setSVar(k[1], k[2]);
}