diff options
| author | Jules Laplace <jules@okfoc.us> | 2012-12-30 20:06:10 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2012-12-30 20:06:10 -0500 |
| commit | 3b2707bd77c4417a0055bb0e57d0d77b172c4f7c (patch) | |
| tree | 0b9507e507a95bc379e316c28ed17646f6df5aa3 | |
| parent | 200ea4abd13eaffad5151eb62fc54a90e5346022 (diff) | |
five nics per ip
| -rw-r--r-- | src/site.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/site.clj b/src/site.clj index a736562..69dd8c6 100644 --- a/src/site.clj +++ b/src/site.clj @@ -304,7 +304,7 @@ WHERE user_id IN ; this should check if the user was created in the last day i guess (defn ip-recently-created? [ip] - (> (count (do-select ["select * from users where created_ip=?::cidr" (str ip)] )) 1)) + (> (count (do-select ["select * from users where created_ip=?::cidr" (str ip)] )) 5)) (def *reserved-nicks-path* "docs/reserved_nicks.txt") (def *reserved-nicks-refresh-period-sec* 300) |
