From cdeb6364310baebb17e2a266d2785e3e90ef1a12 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Mon, 2 Feb 2009 17:32:30 -0500 Subject: [PATCH] some clients I have set to auto-accept (very high tiny agreement) until they actually know about their account. This patch takes them to the tiny agreement form apon first login for this case --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index afb5de1..d8eb411 100644 --- a/index.php +++ b/index.php @@ -118,7 +118,7 @@ function _index_main() { # make sure they've filled out the tiny user agreement $tiny_agreement = db_get_value('people', 'tiny_agreement', 'where id=%i', $client_id); - if($tiny_agreement < 30) { + if($tiny_agreement < 30 || $tiny_agreement > 999) { return './tiny_agreement'; } -- 1.7.10.4