Skip to content

Commit

Permalink
edit-profile: ограничение в 500 топиков на страницу вместо 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcom committed Jun 4, 2010
1 parent b1b4adc commit 36f5f60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/edit-profile.jsp
Expand Up @@ -164,7 +164,7 @@
int messages = Integer.parseInt(request.getParameter("messages"));
int tags = Integer.parseInt(request.getParameter("tags"));
if (topics <= 0 || topics > 1000)
if (topics <= 0 || topics > 500)
throw new BadInputException("некорректное число тем");
if (messages <= 0 || messages > 1000)
throw new BadInputException("некорректное число сообщений");
Expand Down

0 comments on commit 36f5f60

Please sign in to comment.