From 53fe1e1ed2fad8564bcd10c8fd2c2bb51da16009 Mon Sep 17 00:00:00 2001 From: "Janus B. Kristensen" Date: Thu, 28 Apr 2005 09:34:06 +0000 Subject: [PATCH] Lessen the load from bugs in third party scripts that continuously look up non-existant users. svn path=/trunk/boinc/; revision=5953 --- html/user/userw.php | 1 + 1 file changed, 1 insertion(+) diff --git a/html/user/userw.php b/html/user/userw.php index 1dab208f35..075e403c11 100644 --- a/html/user/userw.php +++ b/html/user/userw.php @@ -9,6 +9,7 @@ $user = lookup_user_id($userid); if (!$user) { + sleep(5); error_page("No such user"); } show_user_wap($user);