diff options
| author | cassiopc <cassiopc@gmail.com> | 2013-08-29 12:49:27 +0000 |
|---|---|---|
| committer | cassiopc <cassiopc@gmail.com> | 2013-08-29 12:49:27 +0000 |
| commit | 35df6e3bb203b881f8ebe81ce4e7b59f63dc5e56 (patch) | |
| tree | 70ab6bec6f0f98ec6f09cb889c40de12b8c08a35 /src/fcontest.php | |
| parent | aa7f9e02b8accf8867ea4c316e5e16e5d6902198 (diff) | |
| download | boca-35df6e3bb203b881f8ebe81ce4e7b59f63dc5e56.tar.gz boca-35df6e3bb203b881f8ebe81ce4e7b59f63dc5e56.zip | |
fixed disable logins bug
Diffstat (limited to 'src/fcontest.php')
| -rw-r--r-- | src/fcontest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fcontest.php b/src/fcontest.php index 16c4ad5..7733111 100644 --- a/src/fcontest.php +++ b/src/fcontest.php @@ -671,8 +671,8 @@ function DBUpdateSite ($param,$c=null) { $sql .= " sitelastmilescore=$sitelastmilescore, "; if($sitescorelevel > -5) $sql .= " sitescorelevel=$sitescorelevel, "; - $sql .= " updatetime=".$updatetime." where contestnumber=$contestnumber and sitenumber=$sitenumber " . - "and updatetime < $updatetime"; + $sql .= " updatetime=".$updatetime." where contestnumber=$contestnumber and sitenumber=$sitenumber "; + //. "and updatetime < $updatetime"; DBExec($c,$sql, "DBUpdateSite(update site)"); if($docommit) { DBExec($c, "commit work", "DBUpdateSite(commit-update)"); |