2007-12-29 zzz

* Allow commas in router.trustedUpdateKeys and router.updateURL again
This commit is contained in:
zzz
2007-12-29 23:59:24 +00:00
committed by zzz
parent d6fb979616
commit 7c8f519b35
4 changed files with 6 additions and 5 deletions

View File

@@ -98,7 +98,7 @@ jP69nPbh4KLGhF+SD0+0bW4=
String propertyTrustedKeys = context.getProperty(PROP_TRUSTED_KEYS);
if ( (propertyTrustedKeys != null) && (propertyTrustedKeys.length() > 0) ) {
StringTokenizer propertyTrustedKeysTokens = new StringTokenizer(propertyTrustedKeys, "\r\n");
StringTokenizer propertyTrustedKeysTokens = new StringTokenizer(propertyTrustedKeys, " ,\r\n");
while (propertyTrustedKeysTokens.hasMoreTokens())
_trustedKeys.add(propertyTrustedKeysTokens.nextToken().trim());