} else if ("day".equals(time)) {
calendar.add(Calendar.DAY_OF_MONTH, -1);
} else if ("3day".equals(time)) {
calendar.add(Calendar.DAY_OF_MONTH, -3);
} else {
throw new UserErrorException("Invalid count");
}
Timestamp ts = new Timestamp(calendar.getTimeInMillis());
params.put("message", "Удаляем темы и сообщения после "+ts.toString()+" с IP "+ip+"<br>");