fix corruption of update urls

This commit is contained in:
zzz
2009-01-05 20:30:36 +00:00
parent 4f836a20e1
commit 831f09c91a
2 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public class ConfigUpdateHelper {
public String getUpdateURL() {
String url = _context.getProperty(ConfigUpdateHandler.PROP_UPDATE_URL);
if (url != null)
return url;
return url.replaceAll(",", "\n");
else
return ConfigUpdateHandler.DEFAULT_UPDATE_URL;
}