diff options
author | Bernhard Froehlich <bernhard@cacert.org> | 2012-03-18 17:28:33 +0100 |
---|---|---|
committer | Bernhard Froehlich <bernhard@cacert.org> | 2012-03-18 17:28:33 +0100 |
commit | 18d7f2508dab95f1524b56132006c0e704d3ae92 (patch) | |
tree | 0bb4e93a5cd2cfbef68abcb3c2800afcb5e9ca3c | |
parent | 71125ddd4870952c023c786c3e4dbb866848bd9c (diff) | |
download | cacert-devel-18d7f2508dab95f1524b56132006c0e704d3ae92.tar.gz cacert-devel-18d7f2508dab95f1524b56132006c0e704d3ae92.tar.xz cacert-devel-18d7f2508dab95f1524b56132006c0e704d3ae92.zip |
Removed training semikolon from SQL statement
-rwxr-xr-x | scripts/cron/updatesort.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cron/updatesort.php b/scripts/cron/updatesort.php index aa20b09..1c80756 100755 --- a/scripts/cron/updatesort.php +++ b/scripts/cron/updatesort.php @@ -21,7 +21,7 @@ //mysql_query("update users set assurer=0"); - $query = "select notary.`to` as uid from notary group by notary.`to` having sum(points)>=100;"; + $query = "select notary.`to` as uid from notary group by notary.`to` having sum(points)>=100"; $res = mysql_query($query); while($row = mysql_fetch_assoc($res)) { |