diff options
| -rw-r--r-- | src/email.clj | 2 | ||||
| -rw-r--r-- | src/site.clj | 3 | ||||
| -rw-r--r-- | template/mini_profile.st | 4 |
3 files changed, 3 insertions, 6 deletions
diff --git a/src/email.clj b/src/email.clj index 2997827..d387624 100644 --- a/src/email.clj +++ b/src/email.clj @@ -68,7 +68,6 @@ (def *admin-lists* {"dumpfmprod" ["opuscule@gmail.com" "sbostler@gmail.com" - "stfn6000@gmail.com" "theryderproject@gmail.com"] "sostler" ["sbostler@gmail.com"]}) @@ -94,3 +93,4 @@ body (format "Reason: %s" reason)] (dump-mail (get-admins) subject body))) +
\ No newline at end of file diff --git a/src/site.clj b/src/site.clj index f1b006f..6a8d8f6 100644 --- a/src/site.clj +++ b/src/site.clj @@ -513,8 +513,6 @@ FROM users u (doto st (.setAttribute "score" (comma-format score)) (.setAttribute "score_ent" (score-to-entity score)) - (.setAttribute "dump_cnt" (comma-format (count-dumps-posted nick))) - (.setAttribute "dumps_user_faved_cnt" (comma-format (count-dumps-user-faved nick))) (.toString)))) (defn user-log [session profile-nick offset] @@ -1117,7 +1115,6 @@ order by count desc limit ? offset ?") (let [st (fetch-template "fame" session) msgs (add-user-favs-to-msgs (poll hall-results) (session :user_id))] - (println "hall msgs:" msgs) (.setAttribute st "dumps" (map process-message-for-output msgs)) (.toString st))) diff --git a/template/mini_profile.st b/template/mini_profile.st index bdb58ec..b7c82cc 100644 --- a/template/mini_profile.st +++ b/template/mini_profile.st @@ -18,8 +18,8 @@ </div> $endif$ - <div><a href="http://dump.fm/$nick$/log">dumps posted: $dump_cnt$</a></div> - <div><a href="http://dump.fm/$nick$/favorites">dumps $nick$ faved: $dumps_user_faved_cnt$</a></div> + <div><a href="http://dump.fm/$nick$/log">dumps</a></div> + <div><a href="http://dump.fm/$nick$/favorites">dumps faved</a></div> <br> <h3>contact info</h3> $if(contact)$ |
